summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sys/kern/init_sysent.c2
-rw-r--r--sys/kern/syscalls.c2
-rw-r--r--sys/sys/syscall-hide.h2
-rw-r--r--sys/sys/syscall.h2
-rw-r--r--sys/sys/sysproto.h20
5 files changed, 14 insertions, 14 deletions
diff --git a/sys/kern/init_sysent.c b/sys/kern/init_sysent.c
index e5e6868..9d357fa 100644
--- a/sys/kern/init_sysent.c
+++ b/sys/kern/init_sysent.c
@@ -2,7 +2,7 @@
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from Id: syscalls.master,v 1.17 1995/10/07 06:24:08 swallace Exp
+ * created from Id: syscalls.master,v 1.19 1995/11/12 04:24:53 bde Exp
*/
#include <sys/types.h>
diff --git a/sys/kern/syscalls.c b/sys/kern/syscalls.c
index 67f3c20..e651a9d 100644
--- a/sys/kern/syscalls.c
+++ b/sys/kern/syscalls.c
@@ -2,7 +2,7 @@
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from Id: syscalls.master,v 1.17 1995/10/07 06:24:08 swallace Exp
+ * created from Id: syscalls.master,v 1.19 1995/11/12 04:24:53 bde Exp
*/
char *syscallnames[] = {
diff --git a/sys/sys/syscall-hide.h b/sys/sys/syscall-hide.h
index ffeb7e4..7026c71 100644
--- a/sys/sys/syscall-hide.h
+++ b/sys/sys/syscall-hide.h
@@ -2,7 +2,7 @@
* System call hiders.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from Id: syscalls.master,v 1.17 1995/10/07 06:24:08 swallace Exp
+ * created from Id: syscalls.master,v 1.19 1995/11/12 04:24:53 bde Exp
*/
HIDE_POSIX(fork)
diff --git a/sys/sys/syscall.h b/sys/sys/syscall.h
index bcdc5fa..0c72ade 100644
--- a/sys/sys/syscall.h
+++ b/sys/sys/syscall.h
@@ -2,7 +2,7 @@
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from Id: syscalls.master,v 1.17 1995/10/07 06:24:08 swallace Exp
+ * created from Id: syscalls.master,v 1.19 1995/11/12 04:24:53 bde Exp
*/
#define SYS_syscall 0
diff --git a/sys/sys/sysproto.h b/sys/sys/sysproto.h
index 58cd124..877eccb 100644
--- a/sys/sys/sysproto.h
+++ b/sys/sys/sysproto.h
@@ -2,7 +2,7 @@
* System call prototypes.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from Id: syscalls.master,v 1.17 1995/10/07 06:24:08 swallace Exp
+ * created from Id: syscalls.master,v 1.19 1995/11/12 04:24:53 bde Exp
*/
#ifndef _SYS_SYSPROTO_H_
@@ -84,7 +84,7 @@ struct getpid_args {
int dummy;
};
struct mount_args {
- char * type;
+ int type;
char * path;
int flags;
caddr_t data;
@@ -252,7 +252,7 @@ struct getpagesize_args {
};
struct msync_args {
caddr_t addr;
- size_t len;
+ int len;
int flags;
};
struct sbrk_args {
@@ -266,21 +266,21 @@ struct ovadvise_args {
};
struct munmap_args {
caddr_t addr;
- size_t len;
+ int len;
};
struct mprotect_args {
caddr_t addr;
- size_t len;
+ int len;
int prot;
};
struct madvise_args {
caddr_t addr;
- size_t len;
+ int len;
int behav;
};
struct mincore_args {
caddr_t addr;
- size_t len;
+ int len;
char * vec;
};
struct getgroups_args {
@@ -323,7 +323,7 @@ struct dup2_args {
struct fcntl_args {
int fd;
int cmd;
- void * arg;
+ int arg;
};
struct select_args {
u_int nd;
@@ -513,7 +513,7 @@ struct setdomainname_args {
int len;
};
struct uname_args {
- struct outsname * name;
+ struct utsname * name;
};
struct sysarch_args {
int op;
@@ -863,7 +863,7 @@ struct getkerninfo_args {
};
struct ommap_args {
caddr_t addr;
- size_t len;
+ int len;
int prot;
int flags;
int fd;
OpenPOWER on IntegriCloud