2007-11-21 19:32:51 -05:00
|
|
|
|
|
|
|
USING: alien.syntax ;
|
|
|
|
|
|
|
|
IN: unix.linux.swap
|
|
|
|
|
2008-02-02 01:29:47 -05:00
|
|
|
: 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 ) ;
|