HP-UX Reference (11i v1 05/09) - 2 System Calls (vol 5)
s
swapon(2) swapon(2)
NAME
swapon - add swap space for interleaved paging/swapping
SYNOPSIS
#include <unistd.h>
int swapon(const char *path, ...
/* [int min,
int limit,
int reserve,]
int priority */ );
Remarks
The ANSI C ", ..." construct denotes a variable length argument list whose optional and required
members are given in the associated comment (
/* */).
DESCRIPTION
The
swapon() system call makes a block device or a directory named path available to the system for
paging and swapping.
priority indicates the order in which the swap space from the device or file system is used. Space is taken
from the lower-priority systems first.
swapon() can be used only by users who have appropriate privileges.
If path names a block device file
swapon() makes it available to the system at the specified priority for allocation for paging and swap-
ping.
In this form, swapon() takes only two arguments: the path to the block device file, and the priority.
The device associated with path can be a device already known to the system, defined at system
configuration time, or it can be a previously unspecified device.
If the device was already defined at system configuration time and also has a start and/or size defined for
that swap device, these values are used.
Otherwise, if a filesystem exists on the device, swap is added following the filesystem, or if no filesystem
exists, the complete device is used for swap.
See the appropriate system administrator’s manual for information on how the size of the swap area is cal-
culated.
If path names a directory
swapon() makes the blocks on the file system rooted at path available for paging and swapping.
The min, limit, and reserve arguments are passed and used only if the path argument names a directory.
min indicates the number of file system blocks to take from the file system when
swapon() is called.
limit indicates the maximum number of file system blocks the swap system is allowed to take from the file
system.
reserve indicates the number of file system blocks that are saved for file system use only.
ERRORS
If
swapon() fails, errno is set to one of the following values.
[EACCES] A component of the path prefix denies search permission.
[EALREADY] The device associated with path already has swap turned on.
[EBUSY] The device associated with path is already in use.
[EEXIST] The device associated with path was specified at system configuration time to add
swap at a specified location, but that location is within an existing file system on the
device.
[EFAULT] The LIF header on the device associated with path contains inconsistent directory
data.
HP-UX 11i Version 1: September 2005 − 1 − Hewlett-Packard Company Section 2−−413