Museum

Home

Lab Overview

Retrotechnology Articles

⇒ Online Manual

Media Vault

Software Library

Restoration Projects

Artifacts Sought

Related Articles

swapon(8)

config(8)

swapon(2)  —  System Calls

OSF

NAME

swapon − Adds a swap device for interleaved paging and swapping

SYNOPSIS

swapon(
char ∗path,
int flags,
int lowat,
int hiwat );

PARAMETERS

pathSpecifies the file or block device to be made available. 

flagsSpecifies a flag.  Only one flag is currently supported:

MS_PREFER
The specified path becomes the preferred paging file or device. 

lowatSpecifies the low water mark. 

hiwatSpecifies the high water mark. 

DESCRIPTION

The swapon() function makes a file or block special device available to the system for allocation of paging and swapping space. 

The lowat and hiwat parameters specify the low water and high water marks that the paging file will float between.  If the low water mark is 0 (zero), then the file will not shrink after paging space is freed.  If the high water mark is 0 (zero), then the file will grow without bounds.  These parameters are not used for swapping devices.  The size of the swap area on the block device is calculated at the time the device is first made available for swapping. 

The calling process must have superuser privilege to call the swapon() function. 

RETURN VALUES

Upon successful completion, the swapon() function returns a value of 0 (zero).  If an error has occurred, −1 is returned and errno is set to indicate the error. 

ERRORS

If the swapon() function fails, errno may be set to one of the following values:

[ENOTDIR]A component of the path prefix is not a directory. 

[EINVAL]The pathname contains a character with the high-order bit set, the device was not specified, the device configured by the path parameter was not configured into the system as a swap device, or the device does not allow paging. 

[ENAMETOOLONG]
A component of a pathname exceeded NAME_MAX characters, or an entire pathname exceeded PATH_MAX characters.

[ENOENT]The named file or device does not exist. 

[EACCES]Search permission is denied for a component of the path prefix. 

[ELOOP]Too many symbolic links were encountered in translating the pathname. 

[EPERM]The caller does not have appropriate privilege. 

[EBUSY]The file or device specified by the path parameter has already been made available for swapping. 

[ENXIO]The major device number of the path parameter is out of range (this indicates no device driver exists for the associated hardware). 

[EIO]An I/O error occurred while opening the swap device. 

[EFAULT]The path parameter points outside the process’ allocated address space. 

[EROFS]An attempt was made to activate a paging file on a read-only file system. 

RELATED INFORMATION

Commands: swapon(8), config(8)

Typewritten Software • bear@typewritten.org • Edmonds, WA 98026