Regen
This commit is contained in:
parent
088b38ac84
commit
9da6804056
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 185878 2008-12-10 20:56:19Z jhb
|
||||
* created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 190621 2009-04-01 13:11:50Z kib
|
||||
*/
|
||||
|
||||
#ifndef _FREEBSD32_SYSPROTO_H_
|
||||
@ -119,6 +119,10 @@ struct freebsd32_adjtime_args {
|
||||
char delta_l_[PADL_(struct timeval32 *)]; struct timeval32 * delta; char delta_r_[PADR_(struct timeval32 *)];
|
||||
char olddelta_l_[PADL_(struct timeval32 *)]; struct timeval32 * olddelta; char olddelta_r_[PADR_(struct timeval32 *)];
|
||||
};
|
||||
struct freebsd32_sysarch_args {
|
||||
char op_l_[PADL_(int)]; int op; char op_r_[PADR_(int)];
|
||||
char parms_l_[PADL_(char *)]; char * parms; char parms_r_[PADR_(char *)];
|
||||
};
|
||||
struct freebsd32_semsys_args {
|
||||
char which_l_[PADL_(int)]; int which; char which_r_[PADR_(int)];
|
||||
char a2_l_[PADL_(int)]; int a2; char a2_r_[PADR_(int)];
|
||||
@ -456,6 +460,7 @@ int freebsd32_writev(struct thread *, struct freebsd32_writev_args *);
|
||||
int freebsd32_settimeofday(struct thread *, struct freebsd32_settimeofday_args *);
|
||||
int freebsd32_utimes(struct thread *, struct freebsd32_utimes_args *);
|
||||
int freebsd32_adjtime(struct thread *, struct freebsd32_adjtime_args *);
|
||||
int freebsd32_sysarch(struct thread *, struct freebsd32_sysarch_args *);
|
||||
int freebsd32_semsys(struct thread *, struct freebsd32_semsys_args *);
|
||||
int freebsd32_msgsys(struct thread *, struct freebsd32_msgsys_args *);
|
||||
int freebsd32_shmsys(struct thread *, struct freebsd32_shmsys_args *);
|
||||
@ -682,6 +687,7 @@ int freebsd6_freebsd32_ftruncate(struct thread *, struct freebsd6_freebsd32_ftru
|
||||
#define FREEBSD32_SYS_AUE_freebsd32_settimeofday AUE_SETTIMEOFDAY
|
||||
#define FREEBSD32_SYS_AUE_freebsd32_utimes AUE_UTIMES
|
||||
#define FREEBSD32_SYS_AUE_freebsd32_adjtime AUE_ADJTIME
|
||||
#define FREEBSD32_SYS_AUE_freebsd32_sysarch AUE_SYSARCH
|
||||
#define FREEBSD32_SYS_AUE_freebsd32_semsys AUE_SEMSYS
|
||||
#define FREEBSD32_SYS_AUE_freebsd32_msgsys AUE_MSGSYS
|
||||
#define FREEBSD32_SYS_AUE_freebsd32_shmsys AUE_SHMSYS
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 185878 2008-12-10 20:56:19Z jhb
|
||||
* created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 190621 2009-04-01 13:11:50Z kib
|
||||
*/
|
||||
|
||||
#define FREEBSD32_SYS_syscall 0
|
||||
@ -159,7 +159,7 @@
|
||||
/* 162 is obsolete getdomainname */
|
||||
/* 163 is obsolete setdomainname */
|
||||
/* 164 is obsolete uname */
|
||||
#define FREEBSD32_SYS_sysarch 165
|
||||
#define FREEBSD32_SYS_freebsd32_sysarch 165
|
||||
#define FREEBSD32_SYS_rtprio 166
|
||||
#define FREEBSD32_SYS_freebsd32_semsys 169
|
||||
#define FREEBSD32_SYS_freebsd32_msgsys 170
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 185878 2008-12-10 20:56:19Z jhb
|
||||
* created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 190621 2009-04-01 13:11:50Z kib
|
||||
*/
|
||||
|
||||
const char *freebsd32_syscallnames[] = {
|
||||
@ -172,7 +172,7 @@ const char *freebsd32_syscallnames[] = {
|
||||
"obs_getdomainname", /* 162 = obsolete getdomainname */
|
||||
"obs_setdomainname", /* 163 = obsolete setdomainname */
|
||||
"obs_uname", /* 164 = obsolete uname */
|
||||
"sysarch", /* 165 = sysarch */
|
||||
"freebsd32_sysarch", /* 165 = freebsd32_sysarch */
|
||||
"rtprio", /* 166 = rtprio */
|
||||
"#167", /* 167 = nosys */
|
||||
"#168", /* 168 = nosys */
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 185878 2008-12-10 20:56:19Z jhb
|
||||
* created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 190621 2009-04-01 13:11:50Z kib
|
||||
*/
|
||||
|
||||
#include "opt_compat.h"
|
||||
@ -203,7 +203,7 @@ struct sysent freebsd32_sysent[] = {
|
||||
{ 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 162 = obsolete getdomainname */
|
||||
{ 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 163 = obsolete setdomainname */
|
||||
{ 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 164 = obsolete uname */
|
||||
{ AS(sysarch_args), (sy_call_t *)sysarch, AUE_SYSARCH, NULL, 0, 0 }, /* 165 = sysarch */
|
||||
{ AS(freebsd32_sysarch_args), (sy_call_t *)freebsd32_sysarch, AUE_SYSARCH, NULL, 0, 0 }, /* 165 = freebsd32_sysarch */
|
||||
{ AS(rtprio_args), (sy_call_t *)rtprio, AUE_RTPRIO, NULL, 0, 0 }, /* 166 = rtprio */
|
||||
{ 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 167 = nosys */
|
||||
{ 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 168 = nosys */
|
||||
|
Loading…
x
Reference in New Issue
Block a user