Regen, syscalls.master changed.
This commit is contained in:
parent
14cd99880c
commit
fa87c324dc
|
@ -2,7 +2,7 @@
|
|||
* System call switch table.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.62 1997/10/19 03:25:55 mycroft Exp
|
||||
* created from NetBSD: syscalls.master,v 1.63 1997/10/20 22:05:06 thorpej Exp
|
||||
*/
|
||||
|
||||
#include <sys/param.h>
|
||||
|
@ -700,13 +700,13 @@ struct sysent sysent[] = {
|
|||
sys_lchown }, /* 275 = lchown */
|
||||
{ 2, s(struct sys_lutimes_args),
|
||||
sys_lutimes }, /* 276 = lutimes */
|
||||
{ 3, s(struct sys_msync_args),
|
||||
sys_msync }, /* 277 = msync */
|
||||
{ 2, s(struct sys_stat_args),
|
||||
sys_stat }, /* 278 = stat */
|
||||
{ 2, s(struct sys_fstat_args),
|
||||
sys_fstat }, /* 279 = fstat */
|
||||
{ 2, s(struct sys_lstat_args),
|
||||
sys_lstat }, /* 280 = lstat */
|
||||
{ 3, s(struct sys___msync13_args),
|
||||
sys___msync13 }, /* 277 = __msync13 */
|
||||
{ 2, s(struct sys___stat13_args),
|
||||
sys___stat13 }, /* 278 = __stat13 */
|
||||
{ 2, s(struct sys___fstat13_args),
|
||||
sys___fstat13 }, /* 279 = __fstat13 */
|
||||
{ 2, s(struct sys___lstat13_args),
|
||||
sys___lstat13 }, /* 280 = __lstat13 */
|
||||
};
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
* System call names.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.62 1997/10/19 03:25:55 mycroft Exp
|
||||
* created from NetBSD: syscalls.master,v 1.63 1997/10/20 22:05:06 thorpej Exp
|
||||
*/
|
||||
|
||||
char *syscallnames[] = {
|
||||
|
@ -352,8 +352,8 @@ char *syscallnames[] = {
|
|||
"lchmod", /* 274 = lchmod */
|
||||
"lchown", /* 275 = lchown */
|
||||
"lutimes", /* 276 = lutimes */
|
||||
"msync", /* 277 = msync */
|
||||
"stat", /* 278 = stat */
|
||||
"fstat", /* 279 = fstat */
|
||||
"lstat", /* 280 = lstat */
|
||||
"__msync13", /* 277 = __msync13 */
|
||||
"__stat13", /* 278 = __stat13 */
|
||||
"__fstat13", /* 279 = __fstat13 */
|
||||
"__lstat13", /* 280 = __lstat13 */
|
||||
};
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
* System call numbers.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.62 1997/10/19 03:25:55 mycroft Exp
|
||||
* created from NetBSD: syscalls.master,v 1.63 1997/10/20 22:05:06 thorpej Exp
|
||||
*/
|
||||
|
||||
/* syscall: "syscall" ret: "int" args: "int" "..." */
|
||||
|
@ -586,16 +586,16 @@
|
|||
/* syscall: "lutimes" ret: "int" args: "const char *" "const struct timeval *" */
|
||||
#define SYS_lutimes 276
|
||||
|
||||
/* syscall: "msync" ret: "int" args: "void *" "size_t" "int" */
|
||||
#define SYS_msync 277
|
||||
/* syscall: "__msync13" ret: "int" args: "void *" "size_t" "int" */
|
||||
#define SYS___msync13 277
|
||||
|
||||
/* syscall: "stat" ret: "int" args: "const char *" "struct stat *" */
|
||||
#define SYS_stat 278
|
||||
/* syscall: "__stat13" ret: "int" args: "const char *" "struct stat *" */
|
||||
#define SYS___stat13 278
|
||||
|
||||
/* syscall: "fstat" ret: "int" args: "int" "struct stat *" */
|
||||
#define SYS_fstat 279
|
||||
/* syscall: "__fstat13" ret: "int" args: "int" "struct stat *" */
|
||||
#define SYS___fstat13 279
|
||||
|
||||
/* syscall: "lstat" ret: "int" args: "const char *" "struct stat *" */
|
||||
#define SYS_lstat 280
|
||||
/* syscall: "__lstat13" ret: "int" args: "const char *" "struct stat *" */
|
||||
#define SYS___lstat13 280
|
||||
|
||||
#define SYS_MAXSYSCALL 281
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
* System call argument lists.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.62 1997/10/19 03:25:55 mycroft Exp
|
||||
* created from NetBSD: syscalls.master,v 1.63 1997/10/20 22:05:06 thorpej Exp
|
||||
*/
|
||||
|
||||
#define syscallarg(x) union { x datum; register_t pad; }
|
||||
|
@ -1027,23 +1027,23 @@ struct sys_lutimes_args {
|
|||
syscallarg(const struct timeval *) tptr;
|
||||
};
|
||||
|
||||
struct sys_msync_args {
|
||||
struct sys___msync13_args {
|
||||
syscallarg(void *) addr;
|
||||
syscallarg(size_t) len;
|
||||
syscallarg(int) flags;
|
||||
};
|
||||
|
||||
struct sys_stat_args {
|
||||
struct sys___stat13_args {
|
||||
syscallarg(const char *) path;
|
||||
syscallarg(struct stat *) ub;
|
||||
};
|
||||
|
||||
struct sys_fstat_args {
|
||||
struct sys___fstat13_args {
|
||||
syscallarg(int) fd;
|
||||
syscallarg(struct stat *) sb;
|
||||
};
|
||||
|
||||
struct sys_lstat_args {
|
||||
struct sys___lstat13_args {
|
||||
syscallarg(const char *) path;
|
||||
syscallarg(struct stat *) ub;
|
||||
};
|
||||
|
@ -1302,7 +1302,7 @@ int sys_minherit __P((struct proc *, void *, register_t *));
|
|||
int sys_lchmod __P((struct proc *, void *, register_t *));
|
||||
int sys_lchown __P((struct proc *, void *, register_t *));
|
||||
int sys_lutimes __P((struct proc *, void *, register_t *));
|
||||
int sys_msync __P((struct proc *, void *, register_t *));
|
||||
int sys_stat __P((struct proc *, void *, register_t *));
|
||||
int sys_fstat __P((struct proc *, void *, register_t *));
|
||||
int sys_lstat __P((struct proc *, void *, register_t *));
|
||||
int sys___msync13 __P((struct proc *, void *, register_t *));
|
||||
int sys___stat13 __P((struct proc *, void *, register_t *));
|
||||
int sys___fstat13 __P((struct proc *, void *, register_t *));
|
||||
int sys___lstat13 __P((struct proc *, void *, register_t *));
|
||||
|
|
Loading…
Reference in New Issue