NetBSD/lib/libc/sys/swapctl.2

72 lines
2.7 KiB
Groff
Raw Normal View History

1997-06-13 02:39:15 +04:00
.\" $NetBSD: swapctl.2,v 1.2 1997/06/12 22:39:17 mrg Exp $
.\"
.\" Copyright (c) 1980, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
1993-03-21 12:45:37 +03:00
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
.\" 1. Redistributions of source code must retain the above copyright
.\" notice, this list of conditions and the following disclaimer.
.\" 2. Redistributions in binary form must reproduce the above copyright
.\" notice, this list of conditions and the following disclaimer in the
.\" documentation and/or other materials provided with the distribution.
.\" 3. All advertising materials mentioning features or use of this software
.\" must display the following acknowledgement:
.\" This product includes software developed by the University of
.\" California, Berkeley and its contributors.
.\" 4. Neither the name of the University nor the names of its contributors
.\" may be used to endorse or promote products derived from this software
.\" without specific prior written permission.
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
1997-06-12 19:46:19 +04:00
.\" from: @(#)swapon.2 8.1 (Berkeley) 6/4/93
1993-03-21 12:45:37 +03:00
.\"
1997-06-12 19:46:19 +04:00
.Dd June 12, 1997
1993-03-21 12:45:37 +03:00
.Dt SWAPON 2
1997-06-12 19:46:19 +04:00
.Os NetBSD
1993-03-21 12:45:37 +03:00
.Sh NAME
1997-06-12 19:46:19 +04:00
.Nm swapctl
.Nd modify swap configuration
1993-03-21 12:45:37 +03:00
.Sh SYNOPSIS
.Fd #include <unistd.h>
1997-06-13 02:39:15 +04:00
.Fd #include <vm/vm_swap.h>
1993-03-21 12:45:37 +03:00
.Ft int
1997-06-12 19:46:19 +04:00
.Fn swapctl "int cmd" "const void *arg" "int misc"
1997-06-13 02:39:15 +04:00
.Fn swapon "const char *name"
.Sh DESCRIPTION
The
.Nm
function is used to add swap devices, and modify their configuration.
The
.Nm swapon
function only exists as as backwards compatibility feature until the
next major bump of the
.Pa libc
major from 12. It should never be used in new code, and should be
removed form existed code.
1993-03-21 12:45:37 +03:00
.Sh SEE ALSO
1997-06-12 19:46:19 +04:00
.Xr swapctl 8 ,
1993-03-21 12:45:37 +03:00
.Xr config 8
.Sh BUGS
There is no way to stop swapping on a disk so that the pack may be
dismounted.
.Pp
This call will be upgraded in future versions of the system.
.Sh HISTORY
The
1997-06-12 19:46:19 +04:00
.Fn swapctl
1993-03-21 12:45:37 +03:00
function call appeared in
1997-06-12 19:46:19 +04:00
.Nx 1.3 .