2002-10-01 22:10:43 +04:00
|
|
|
.\" $NetBSD: sysarch.2,v 1.12 2002/10/01 18:10:46 wiz Exp $
|
1995-02-27 15:31:34 +03:00
|
|
|
.\"
|
1993-10-12 05:16:33 +03:00
|
|
|
.\" Copyright (c) 1980, 1991 Regents of the University of California.
|
|
|
|
.\" All rights reserved.
|
|
|
|
.\"
|
|
|
|
.\" 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.
|
|
|
|
.\"
|
|
|
|
.\" from: @(#)syscall.2 6.3 (Berkeley) 3/10/91
|
|
|
|
.\"
|
|
|
|
.Dd October 11, 1993
|
|
|
|
.Dt SYSARCH 2
|
1995-02-27 15:31:34 +03:00
|
|
|
.Os
|
1993-10-12 05:16:33 +03:00
|
|
|
.Sh NAME
|
|
|
|
.Nm sysarch
|
1999-04-26 08:10:35 +04:00
|
|
|
.Nd architecture-dependent system call
|
1999-12-03 00:42:35 +03:00
|
|
|
.Sh LIBRARY
|
|
|
|
.Lb libc
|
1993-10-12 05:16:33 +03:00
|
|
|
.Sh SYNOPSIS
|
2002-02-08 04:21:55 +03:00
|
|
|
.Fd #include \*[Lt]machine/sysarch.h\*[Gt]
|
1993-10-12 05:16:33 +03:00
|
|
|
.Ft int
|
1998-02-26 00:24:56 +03:00
|
|
|
.Fn sysarch "int number" "void *args"
|
1993-10-12 05:16:33 +03:00
|
|
|
.Sh DESCRIPTION
|
1998-08-29 12:32:32 +04:00
|
|
|
.Fn sysarch
|
1993-10-12 05:16:33 +03:00
|
|
|
performs the architecture-dependent function
|
|
|
|
specified by
|
|
|
|
.Fa number
|
|
|
|
with the arguments specified by the
|
|
|
|
.Fa args
|
|
|
|
pointer.
|
1998-08-29 12:32:32 +04:00
|
|
|
.Fa args
|
2002-10-01 22:10:43 +04:00
|
|
|
is a pointer to a structure defining the actual arguments of the function.
|
|
|
|
Symbolic constants and argument structures for the architecture-dependent
|
1993-10-12 05:16:33 +03:00
|
|
|
functions can be found in the header file
|
|
|
|
.Ao Pa machine/sysarch.h Ac .
|
|
|
|
.Pp
|
|
|
|
The
|
1993-12-01 21:49:52 +03:00
|
|
|
.Fn sysarch
|
2002-10-01 22:10:43 +04:00
|
|
|
system call should never be called directly by user programs.
|
|
|
|
Instead, they should access its functions using the architecture-dependent
|
1993-10-12 05:16:33 +03:00
|
|
|
library.
|
|
|
|
.Sh RETURN VALUES
|
|
|
|
See the manual pages for specific architecture-dependent function calls
|
|
|
|
for information about their return values.
|
|
|
|
.Sh HISTORY
|
|
|
|
The
|
1993-11-25 03:38:17 +03:00
|
|
|
.Fn sysarch
|
1993-10-12 05:16:33 +03:00
|
|
|
function call appeared in
|
1997-11-24 09:28:50 +03:00
|
|
|
.Nx 1.0 .
|