summaryrefslogtreecommitdiff
path: root/include/sys/swap.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/sys/swap.h')
-rw-r--r--include/sys/swap.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/sys/swap.h b/include/sys/swap.h
new file mode 100644
index 00000000..c5824f1d
--- /dev/null
+++ b/include/sys/swap.h
@@ -0,0 +1,11 @@
+#ifndef _SYS_SWAP_H
+#define _SYS_SWAP_H
+
+#define SWAP_FLAG_PREFER 0x8000
+#define SWAP_FLAG_PRIO_MASK 0x7fff
+#define SWAP_FLAG_PRIO_SHIFT 0
+
+int swapon (const char *, int);
+int swapoff (const char *);
+
+#endif