This commit is contained in:
christos 1997-10-17 02:04:28 +00:00
parent f8dee5bcb9
commit dac5408a54
4 changed files with 8 additions and 8 deletions

View File

@ -2,7 +2,7 @@
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.24 1997/10/15 17:18:49 mycroft Exp
* created from NetBSD: syscalls.master,v 1.25 1997/10/17 02:03:17 christos Exp
*/
/* syscall: "syscall" ret: "int" args: */
@ -273,7 +273,7 @@
/* syscall: "xmknod" ret: "int" args: "int" "char *" "svr4_mode_t" "svr4_dev_t" */
#define SVR4_SYS_xmknod 126
/* syscall: "setrlimit" ret: "int" args: "int" "struct orlimit *" */
/* syscall: "setrlimit" ret: "int" args: "int" "const struct orlimit *" */
#define SVR4_SYS_setrlimit 128
/* syscall: "getrlimit" ret: "int" args: "int" "struct orlimit *" */
@ -363,7 +363,7 @@
/* syscall: "fstatvfs64" ret: "int" args: "int" "struct svr4_statvfs64 *" */
#define SVR4_SYS_fstatvfs64 219
/* syscall: "setrlimit64" ret: "int" args: "int" "struct rlimit *" */
/* syscall: "setrlimit64" ret: "int" args: "int" "const struct rlimit *" */
#define SVR4_SYS_setrlimit64 220
/* syscall: "getrlimit64" ret: "int" args: "int" "struct rlimit *" */

View File

@ -2,7 +2,7 @@
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.24 1997/10/15 17:18:49 mycroft Exp
* created from NetBSD: syscalls.master,v 1.25 1997/10/17 02:03:17 christos Exp
*/
#define syscallarg(x) union { x datum; register_t pad; }
@ -274,7 +274,7 @@ struct svr4_sys_xmknod_args {
struct svr4_sys_setrlimit_args {
syscallarg(int) which;
syscallarg(struct orlimit *) rlp;
syscallarg(const struct orlimit *) rlp;
};
struct svr4_sys_getrlimit_args {
@ -396,7 +396,7 @@ struct svr4_sys_fstatvfs64_args {
struct svr4_sys_setrlimit64_args {
syscallarg(int) which;
syscallarg(struct rlimit *) rlp;
syscallarg(const struct rlimit *) rlp;
};
struct svr4_sys_getrlimit64_args {

View File

@ -2,7 +2,7 @@
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.24 1997/10/15 17:18:49 mycroft Exp
* created from NetBSD: syscalls.master,v 1.25 1997/10/17 02:03:17 christos Exp
*/
char *svr4_syscallnames[] = {

View File

@ -2,7 +2,7 @@
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.24 1997/10/15 17:18:49 mycroft Exp
* created from NetBSD: syscalls.master,v 1.25 1997/10/17 02:03:17 christos Exp
*/
#include <sys/param.h>