This commit is contained in:
christos 1997-10-19 18:45:46 +00:00
parent 423b2ff7b4
commit eb2b299151
4 changed files with 13 additions and 13 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.25 1997/10/17 02:03:17 christos Exp
* created from NetBSD: syscalls.master,v 1.26 1997/10/19 18:45:04 christos Exp
*/
/* syscall: "syscall" ret: "int" args: */
@ -237,13 +237,13 @@
/* syscall: "pathconf" ret: "int" args: "char *" "int" */
#define SVR4_SYS_pathconf 113
/* syscall: "mmap" ret: "int" args: "svr4_caddr_t" "svr4_size_t" "int" "int" "int" "svr4_off_t" */
/* syscall: "mmap" ret: "void *" args: "void *" "svr4_size_t" "int" "int" "int" "svr4_off_t" */
#define SVR4_SYS_mmap 115
/* syscall: "mprotect" ret: "int" args: "caddr_t" "int" "int" */
/* syscall: "mprotect" ret: "int" args: "void *" "int" "int" */
#define SVR4_SYS_mprotect 116
/* syscall: "munmap" ret: "int" args: "caddr_t" "int" */
/* syscall: "munmap" ret: "int" args: "void *" "int" */
#define SVR4_SYS_munmap 117
/* syscall: "fpathconf" ret: "int" args: "int" "int" */
@ -279,7 +279,7 @@
/* syscall: "getrlimit" ret: "int" args: "int" "struct orlimit *" */
#define SVR4_SYS_getrlimit 129
/* syscall: "memcntl" ret: "int" args: "svr4_caddr_t" "svr4_size_t" "int" "svr4_caddr_t" "int" "int" */
/* syscall: "memcntl" ret: "int" args: "void *" "svr4_size_t" "int" "void *" "int" "int" */
#define SVR4_SYS_memcntl 131
/* syscall: "posix_rename" ret: "int" args: "char *" "char *" */
@ -345,7 +345,7 @@
/* syscall: "getdents64" ret: "int" args: "int" "struct svr4_dirent64 *" "int" */
#define SVR4_SYS_getdents64 213
/* syscall: "mmap64" ret: "int" args: "svr4_caddr_t" "svr4_size_t" "int" "int" "int" "svr4_off64_t" */
/* syscall: "mmap64" ret: "void *" args: "void *" "svr4_size_t" "int" "int" "int" "svr4_off64_t" */
#define SVR4_SYS_mmap64 214
/* syscall: "stat64" ret: "int" args: "char *" "struct svr4_stat64 *" */

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.25 1997/10/17 02:03:17 christos Exp
* created from NetBSD: syscalls.master,v 1.26 1997/10/19 18:45:04 christos Exp
*/
#define syscallarg(x) union { x datum; register_t pad; }
@ -234,7 +234,7 @@ struct svr4_sys_pathconf_args {
};
struct svr4_sys_mmap_args {
syscallarg(svr4_caddr_t) addr;
syscallarg(void *) addr;
syscallarg(svr4_size_t) len;
syscallarg(int) prot;
syscallarg(int) flags;
@ -283,10 +283,10 @@ struct svr4_sys_getrlimit_args {
};
struct svr4_sys_memcntl_args {
syscallarg(svr4_caddr_t) addr;
syscallarg(void *) addr;
syscallarg(svr4_size_t) len;
syscallarg(int) cmd;
syscallarg(svr4_caddr_t) arg;
syscallarg(void *) arg;
syscallarg(int) attr;
syscallarg(int) mask;
};
@ -361,7 +361,7 @@ struct svr4_sys_getdents64_args {
};
struct svr4_sys_mmap64_args {
syscallarg(svr4_caddr_t) addr;
syscallarg(void *) addr;
syscallarg(svr4_size_t) len;
syscallarg(int) prot;
syscallarg(int) flags;

View File

@ -2,7 +2,7 @@
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.25 1997/10/17 02:03:17 christos Exp
* created from NetBSD: syscalls.master,v 1.26 1997/10/19 18:45:04 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.25 1997/10/17 02:03:17 christos Exp
* created from NetBSD: syscalls.master,v 1.26 1997/10/19 18:45:04 christos Exp
*/
#include <sys/param.h>