factor/unmaintained/swap/swap.factor

12 lines
271 B
Factor
Raw Normal View History

2007-11-21 19:32:51 -05:00
USING: alien.syntax ;
IN: unix.linux.swap
: SWAP_FLAG_PREFER HEX: 8000 ; ! Set if swap priority is specified.
: SWAP_FLAG_PRIO_MASK HEX: 7fff ;
: SWAP_FLAG_PRIO_SHIFT 0 ;
2007-11-21 19:32:51 -05:00
FUNCTION: int swapon ( char* path, int flags ) ;
FUNCTION: int swapoff ( char* path ) ;