Regnerate.

This commit is contained in:
Doug Rabson 1998-08-24 08:32:19 +00:00
parent 2e83b28161
commit c49265d091
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=38516
6 changed files with 13 additions and 13 deletions

View file

@ -2,7 +2,7 @@
* System call switch table.
*
* 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
*/
#include "opt_compat.h"

View file

@ -2,7 +2,7 @@
* 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
*/
char *syscallnames[] = {

View file

@ -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)

View file

@ -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

View file

@ -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 \

View file

@ -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 {