aboutsummaryrefslogtreecommitdiff
path: root/sys/sys
diff options
context:
space:
mode:
authorDoug Rabson <dfr@FreeBSD.org>1998-08-24 08:32:19 +0000
committerDoug Rabson <dfr@FreeBSD.org>1998-08-24 08:32:19 +0000
commitc49265d091402c5784472d503a0159dbfb30ed69 (patch)
tree65aaf75734ea8b9a3c00a99a8668734619939062 /sys/sys
parent2e83b281618315f4ff48c4a084a223029b259a81 (diff)
downloadsrc-c49265d091402c5784472d503a0159dbfb30ed69.tar.gz
src-c49265d091402c5784472d503a0159dbfb30ed69.zip
Regnerate.
Notes
Notes: svn path=/head/; revision=38516
Diffstat (limited to 'sys/sys')
-rw-r--r--sys/sys/syscall-hide.h2
-rw-r--r--sys/sys/syscall.h2
-rw-r--r--sys/sys/syscall.mk2
-rw-r--r--sys/sys/sysproto.h16
4 files changed, 11 insertions, 11 deletions
diff --git a/sys/sys/syscall-hide.h b/sys/sys/syscall-hide.h
index c345d2e699ba..dd8fab9ef3d3 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.52 1998/06/07 17:11:40 dfr Exp
+ * created from Id: syscalls.master,v 1.53 1998/08/24 08:29:52 dfr Exp
*/
HIDE_POSIX(fork)
diff --git a/sys/sys/syscall.h b/sys/sys/syscall.h
index 23c5b7b6d07c..ae58e240707d 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.52 1998/06/07 17:11:40 dfr Exp
+ * created from Id: syscalls.master,v 1.53 1998/08/24 08:29:52 dfr Exp
*/
#define SYS_syscall 0
diff --git a/sys/sys/syscall.mk b/sys/sys/syscall.mk
index 4fa066a39c30..5d5bd0f03da2 100644
--- a/sys/sys/syscall.mk
+++ b/sys/sys/syscall.mk
@@ -1,6 +1,6 @@
# FreeBSD system call names.
# DO NOT EDIT-- this file is automatically generated.
-# created from Id: syscalls.master,v 1.52 1998/06/07 17:11:40 dfr Exp
+# created from Id: syscalls.master,v 1.53 1998/08/24 08:29:52 dfr Exp
MIASM = \
syscall.o \
exit.o \
diff --git a/sys/sys/sysproto.h b/sys/sys/sysproto.h
index 590174352a48..40ee5bd83b8d 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.52 1998/06/07 17:11:40 dfr Exp
+ * created from Id: syscalls.master,v 1.53 1998/08/24 08:29:52 dfr Exp
*/
#ifndef _SYS_SYSPROTO_H_
@@ -26,13 +26,13 @@ struct fork_args {
};
struct read_args {
int fd; char fd_[PAD_(int)];
- char * buf; char buf_[PAD_(char *)];
- u_int nbyte; char nbyte_[PAD_(u_int)];
+ void * buf; char buf_[PAD_(void *)];
+ size_t nbyte; char nbyte_[PAD_(size_t)];
};
struct write_args {
int fd; char fd_[PAD_(int)];
- char * buf; char buf_[PAD_(char *)];
- u_int nbyte; char nbyte_[PAD_(u_int)];
+ const void * buf; char buf_[PAD_(const void *)];
+ size_t nbyte; char nbyte_[PAD_(size_t)];
};
struct open_args {
char * path; char path_[PAD_(char *)];
@@ -177,8 +177,8 @@ struct getegid_args {
};
struct profil_args {
caddr_t samples; char samples_[PAD_(caddr_t)];
- u_int size; char size_[PAD_(u_int)];
- u_int offset; char offset_[PAD_(u_int)];
+ size_t size; char size_[PAD_(size_t)];
+ size_t offset; char offset_[PAD_(size_t)];
u_int scale; char scale_[PAD_(u_int)];
};
struct ktrace_args {
@@ -1111,7 +1111,7 @@ struct ofstat_args {
struct getkerninfo_args {
int op; char op_[PAD_(int)];
char * where; char where_[PAD_(char *)];
- int * size; char size_[PAD_(int *)];
+ size_t * size; char size_[PAD_(size_t *)];
int arg; char arg_[PAD_(int)];
};
struct ommap_args {