123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #ifndef _SYS_SWAP_H
- #define _SYS_SWAP_H 1
- #include <features.h>
- #define SWAP_FLAG_PREFER 0x8000
- #define SWAP_FLAG_PRIO_MASK 0x7fff
- #define SWAP_FLAG_PRIO_SHIFT 0
- __BEGIN_DECLS
- extern int swapon (const char *__path, int __flags) __THROW;
- extern int swapoff (const char *__path) __THROW;
- __END_DECLS
- #endif
|