summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1998-02-10 08:44:29 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1998-02-10 08:44:29 +0000
commit348e77d88f460bb51621887866d4d02779a5cc75 (patch)
tree5d6dbd9f0fed619ccb38fa7c35eea1cf12c80eda
parent7c48cd6bb8972ab114d4c827dc94ac05580d9312 (diff)
sync
-rw-r--r--sys/kern/init_sysent.c4
-rw-r--r--sys/kern/syscalls.c4
-rw-r--r--sys/sys/syscall.h16
-rw-r--r--sys/sys/syscallargs.h20
4 files changed, 22 insertions, 22 deletions
diff --git a/sys/kern/init_sysent.c b/sys/kern/init_sysent.c
index 6a69f656cf4..626da4fd029 100644
--- a/sys/kern/init_sysent.c
+++ b/sys/kern/init_sysent.c
@@ -1,10 +1,10 @@
-/* $OpenBSD: init_sysent.c,v 1.23 1998/02/08 22:38:27 tholo Exp $ */
+/* $OpenBSD: init_sysent.c,v 1.24 1998/02/10 08:44:25 deraadt Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from; OpenBSD: syscalls.master,v 1.21 1998/02/08 22:37:01 tholo Exp
+ * created from; OpenBSD: syscalls.master,v 1.22 1998/02/10 08:44:07 deraadt Exp
*/
#include <sys/param.h>
diff --git a/sys/kern/syscalls.c b/sys/kern/syscalls.c
index ac1113cb344..78d130ee355 100644
--- a/sys/kern/syscalls.c
+++ b/sys/kern/syscalls.c
@@ -1,10 +1,10 @@
-/* $OpenBSD: syscalls.c,v 1.23 1998/02/08 22:38:27 tholo Exp $ */
+/* $OpenBSD: syscalls.c,v 1.24 1998/02/10 08:44:26 deraadt Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from; OpenBSD: syscalls.master,v 1.21 1998/02/08 22:37:01 tholo Exp
+ * created from; OpenBSD: syscalls.master,v 1.22 1998/02/10 08:44:07 deraadt Exp
*/
char *syscallnames[] = {
diff --git a/sys/sys/syscall.h b/sys/sys/syscall.h
index a427cd6ac8e..a2ebc61435f 100644
--- a/sys/sys/syscall.h
+++ b/sys/sys/syscall.h
@@ -1,10 +1,10 @@
-/* $OpenBSD: syscall.h,v 1.23 1998/02/08 22:38:28 tholo Exp $ */
+/* $OpenBSD: syscall.h,v 1.24 1998/02/10 08:44:27 deraadt Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from; OpenBSD: syscalls.master,v 1.21 1998/02/08 22:37:01 tholo Exp
+ * created from; OpenBSD: syscalls.master,v 1.22 1998/02/10 08:44:07 deraadt Exp
*/
/* syscall: "syscall" ret: "int" args: "int" "..." */
@@ -46,10 +46,10 @@
/* syscall: "fchdir" ret: "int" args: "int" */
#define SYS_fchdir 13
-/* syscall: "mknod" ret: "int" args: "const char *" "mode_t" "dev_t" */
+/* syscall: "mknod" ret: "int" args: "const char *" "int" "dev_t" */
#define SYS_mknod 14
-/* syscall: "chmod" ret: "int" args: "const char *" "mode_t" */
+/* syscall: "chmod" ret: "int" args: "const char *" "int" */
#define SYS_chmod 15
/* syscall: "chown" ret: "int" args: "const char *" "uid_t" "gid_t" */
@@ -181,7 +181,7 @@
/* syscall: "execve" ret: "int" args: "const char *" "char *const *" "char *const *" */
#define SYS_execve 59
-/* syscall: "umask" ret: "mode_t" args: "mode_t" */
+/* syscall: "umask" ret: "int" args: "int" */
#define SYS_umask 60
/* syscall: "chroot" ret: "int" args: "const char *" */
@@ -339,7 +339,7 @@
/* syscall: "fchown" ret: "int" args: "int" "uid_t" "gid_t" */
#define SYS_fchown 123
-/* syscall: "fchmod" ret: "int" args: "int" "mode_t" */
+/* syscall: "fchmod" ret: "int" args: "int" "int" */
#define SYS_fchmod 124
/* 125 is compat_43 orecvfrom */
@@ -358,7 +358,7 @@
/* syscall: "flock" ret: "int" args: "int" "int" */
#define SYS_flock 131
-/* syscall: "mkfifo" ret: "int" args: "const char *" "mode_t" */
+/* syscall: "mkfifo" ret: "int" args: "const char *" "int" */
#define SYS_mkfifo 132
/* syscall: "sendto" ret: "ssize_t" args: "int" "const void *" "size_t" "int" "const struct sockaddr *" "int" */
@@ -370,7 +370,7 @@
/* syscall: "socketpair" ret: "int" args: "int" "int" "int" "int *" */
#define SYS_socketpair 135
-/* syscall: "mkdir" ret: "int" args: "const char *" "mode_t" */
+/* syscall: "mkdir" ret: "int" args: "const char *" "int" */
#define SYS_mkdir 136
/* syscall: "rmdir" ret: "int" args: "const char *" */
diff --git a/sys/sys/syscallargs.h b/sys/sys/syscallargs.h
index e020d36e6df..9d2fbfe4201 100644
--- a/sys/sys/syscallargs.h
+++ b/sys/sys/syscallargs.h
@@ -1,10 +1,10 @@
-/* $OpenBSD: syscallargs.h,v 1.24 1998/02/08 22:38:29 tholo Exp $ */
+/* $OpenBSD: syscallargs.h,v 1.25 1998/02/10 08:44:28 deraadt Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from; OpenBSD: syscalls.master,v 1.21 1998/02/08 22:37:01 tholo Exp
+ * created from; OpenBSD: syscalls.master,v 1.22 1998/02/10 08:44:07 deraadt Exp
*/
#define syscallarg(x) union { x datum; register_t pad; }
@@ -28,7 +28,7 @@ struct sys_write_args {
struct sys_open_args {
syscallarg(const char *) path;
syscallarg(int) flags;
- syscallarg(mode_t) mode;
+ syscallarg(int) mode;
};
struct sys_close_args {
@@ -44,7 +44,7 @@ struct sys_wait4_args {
struct compat_43_sys_creat_args {
syscallarg(const char *) path;
- syscallarg(mode_t) mode;
+ syscallarg(int) mode;
};
struct sys_link_args {
@@ -66,13 +66,13 @@ struct sys_fchdir_args {
struct sys_mknod_args {
syscallarg(const char *) path;
- syscallarg(mode_t) mode;
+ syscallarg(int) mode;
syscallarg(dev_t) dev;
};
struct sys_chmod_args {
syscallarg(const char *) path;
- syscallarg(mode_t) mode;
+ syscallarg(int) mode;
};
struct sys_chown_args {
@@ -268,7 +268,7 @@ struct sys_execve_args {
};
struct sys_umask_args {
- syscallarg(mode_t) newmask;
+ syscallarg(int) newmask;
};
struct sys_chroot_args {
@@ -548,7 +548,7 @@ struct sys_fchown_args {
struct sys_fchmod_args {
syscallarg(int) fd;
- syscallarg(mode_t) mode;
+ syscallarg(int) mode;
};
struct compat_43_sys_recvfrom_args {
@@ -592,7 +592,7 @@ struct sys_flock_args {
struct sys_mkfifo_args {
syscallarg(const char *) path;
- syscallarg(mode_t) mode;
+ syscallarg(int) mode;
};
struct sys_sendto_args {
@@ -618,7 +618,7 @@ struct sys_socketpair_args {
struct sys_mkdir_args {
syscallarg(const char *) path;
- syscallarg(mode_t) mode;
+ syscallarg(int) mode;
};
struct sys_rmdir_args {