Regenerate (padding for pread and pwrite).
This commit is contained in:
parent
8fe387ab84
commit
5cc4ab5323
@ -2,7 +2,7 @@
|
||||
* System call switch table.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from Id: syscalls.master,v 1.55 1998/11/11 12:45:14 peter Exp
|
||||
* created from Id: syscalls.master,v 1.57 1999/04/04 21:41:16 dt Exp
|
||||
*/
|
||||
|
||||
#include "opt_compat.h"
|
||||
@ -192,8 +192,8 @@ struct sysent sysent[] = {
|
||||
{ 6, (sy_call_t *)msgsys }, /* 170 = msgsys */
|
||||
{ 4, (sy_call_t *)shmsys }, /* 171 = shmsys */
|
||||
{ 0, (sy_call_t *)nosys }, /* 172 = nosys */
|
||||
{ 5, (sy_call_t *)pread }, /* 173 = pread */
|
||||
{ 5, (sy_call_t *)pwrite }, /* 174 = pwrite */
|
||||
{ 6, (sy_call_t *)pread }, /* 173 = pread */
|
||||
{ 6, (sy_call_t *)pwrite }, /* 174 = pwrite */
|
||||
{ 0, (sy_call_t *)nosys }, /* 175 = nosys */
|
||||
{ 1, (sy_call_t *)ntp_adjtime }, /* 176 = ntp_adjtime */
|
||||
{ 0, (sy_call_t *)nosys }, /* 177 = sfork */
|
||||
|
@ -2,7 +2,7 @@
|
||||
* System call names.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from Id: syscalls.master,v 1.55 1998/11/11 12:45:14 peter Exp
|
||||
* created from Id: syscalls.master,v 1.57 1999/04/04 21:41:16 dt Exp
|
||||
*/
|
||||
|
||||
char *syscallnames[] = {
|
||||
|
@ -2,7 +2,7 @@
|
||||
* System call hiders.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from Id: syscalls.master,v 1.55 1998/11/11 12:45:14 peter Exp
|
||||
* created from Id: syscalls.master,v 1.57 1999/04/04 21:41:16 dt Exp
|
||||
*/
|
||||
|
||||
HIDE_POSIX(fork)
|
||||
|
@ -2,7 +2,7 @@
|
||||
* System call numbers.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from Id: syscalls.master,v 1.55 1998/11/11 12:45:14 peter Exp
|
||||
* created from Id: syscalls.master,v 1.57 1999/04/04 21:41:16 dt Exp
|
||||
*/
|
||||
|
||||
#define SYS_syscall 0
|
||||
|
@ -1,6 +1,6 @@
|
||||
# FreeBSD system call names.
|
||||
# DO NOT EDIT-- this file is automatically generated.
|
||||
# created from Id: syscalls.master,v 1.55 1998/11/11 12:45:14 peter Exp
|
||||
# created from Id: syscalls.master,v 1.57 1999/04/04 21:41:16 dt Exp
|
||||
MIASM = \
|
||||
syscall.o \
|
||||
exit.o \
|
||||
|
@ -2,7 +2,7 @@
|
||||
* System call prototypes.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from Id: syscalls.master,v 1.55 1998/11/11 12:45:14 peter Exp
|
||||
* created from Id: syscalls.master,v 1.57 1999/04/04 21:41:16 dt Exp
|
||||
*/
|
||||
|
||||
#ifndef _SYS_SYSPROTO_H_
|
||||
@ -546,12 +546,14 @@ struct pread_args {
|
||||
int fd; char fd_[PAD_(int)];
|
||||
void * buf; char buf_[PAD_(void *)];
|
||||
size_t nbyte; char nbyte_[PAD_(size_t)];
|
||||
int pad; char pad_[PAD_(int)];
|
||||
off_t offset; char offset_[PAD_(off_t)];
|
||||
};
|
||||
struct pwrite_args {
|
||||
int fd; char fd_[PAD_(int)];
|
||||
const void * buf; char buf_[PAD_(const void *)];
|
||||
size_t nbyte; char nbyte_[PAD_(size_t)];
|
||||
int pad; char pad_[PAD_(int)];
|
||||
off_t offset; char offset_[PAD_(off_t)];
|
||||
};
|
||||
struct ntp_adjtime_args {
|
||||
|
Loading…
Reference in New Issue
Block a user