regen
This commit is contained in:
parent
61da9d97fb
commit
f50143e803
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: src/sys/alpha/linux/syscalls.master,v 1.68 2006/03/18 20:47:36 netchild Exp
|
||||
* created from FreeBSD: src/sys/alpha/linux/syscalls.master,v 1.69 2006/03/20 19:46:56 netchild Exp
|
||||
*/
|
||||
|
||||
#ifndef _LINUX_SYSPROTO_H_
|
||||
@ -203,10 +203,22 @@ struct linux_connect_args {
|
||||
char name_l_[PADL_(struct l_sockaddr *)]; struct l_sockaddr * name; char name_r_[PADR_(struct l_sockaddr *)];
|
||||
char namelen_l_[PADL_(l_int)]; l_int namelen; char namelen_r_[PADR_(l_int)];
|
||||
};
|
||||
struct linux_accept_args {
|
||||
char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)];
|
||||
char args_l_[PADL_(struct linux_accept_args *)]; struct linux_accept_args * args; char args_r_[PADR_(struct linux_accept_args *)];
|
||||
};
|
||||
struct linux_getpriority_args {
|
||||
char which_l_[PADL_(int)]; int which; char which_r_[PADR_(int)];
|
||||
char who_l_[PADL_(int)]; int who; char who_r_[PADR_(int)];
|
||||
};
|
||||
struct linux_send_args {
|
||||
char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)];
|
||||
char args_l_[PADL_(struct linux_send_args *)]; struct linux_send_args * args; char args_r_[PADR_(struct linux_send_args *)];
|
||||
};
|
||||
struct linux_recv_args {
|
||||
char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)];
|
||||
char args_l_[PADL_(struct linux_recv_args *)]; struct linux_recv_args * args; char args_r_[PADR_(struct linux_recv_args *)];
|
||||
};
|
||||
struct osf1_sigreturn_args {
|
||||
char sigcntxp_l_[PADL_(struct osigcontext *)]; struct osigcontext * sigcntxp; char sigcntxp_r_[PADR_(struct osigcontext *)];
|
||||
};
|
||||
@ -227,6 +239,10 @@ struct osf1_getrusage_args {
|
||||
char who_l_[PADL_(long)]; long who; char who_r_[PADR_(long)];
|
||||
char rusage_l_[PADL_(void *)]; void * rusage; char rusage_r_[PADR_(void *)];
|
||||
};
|
||||
struct linux_recvfrom_args {
|
||||
char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)];
|
||||
char args_l_[PADL_(struct linux_recvfrom_args *)]; struct linux_recvfrom_args * args; char args_r_[PADR_(struct linux_recvfrom_args *)];
|
||||
};
|
||||
struct linux_rename_args {
|
||||
char from_l_[PADL_(char *)]; char * from; char from_r_[PADR_(char *)];
|
||||
char to_l_[PADL_(char *)]; char * to; char to_r_[PADR_(char *)];
|
||||
@ -257,6 +273,10 @@ struct linux_mkdir_args {
|
||||
struct linux_rmdir_args {
|
||||
char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
|
||||
};
|
||||
struct linux_getpeername_args {
|
||||
char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)];
|
||||
char args_l_[PADL_(struct linux_getpeername_args *)]; struct linux_getpeername_args * args; char args_r_[PADR_(struct linux_getpeername_args *)];
|
||||
};
|
||||
struct linux_getrlimit_args {
|
||||
char resource_l_[PADL_(l_uint)]; l_uint resource; char resource_r_[PADR_(l_uint)];
|
||||
char rlim_l_[PADL_(struct l_rlimit *)]; struct l_rlimit * rlim; char rlim_r_[PADR_(struct l_rlimit *)];
|
||||
@ -268,6 +288,10 @@ struct linux_setrlimit_args {
|
||||
struct linux_quotactl_args {
|
||||
register_t dummy;
|
||||
};
|
||||
struct linux_getsockname_args {
|
||||
char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)];
|
||||
char args_l_[PADL_(struct linux_getsockname_args *)]; struct linux_getsockname_args * args; char args_r_[PADR_(struct linux_getsockname_args *)];
|
||||
};
|
||||
struct osf1_sigaction_args {
|
||||
char sig_l_[PADL_(int)]; int sig; char sig_r_[PADR_(int)];
|
||||
char nsa_l_[PADL_(struct osf1_sigaction *)]; struct osf1_sigaction * nsa; char nsa_r_[PADR_(struct osf1_sigaction *)];
|
||||
@ -635,13 +659,17 @@ int linux_fcntl(struct thread *, struct linux_fcntl_args *);
|
||||
int osf1_select(struct thread *, struct osf1_select_args *);
|
||||
int osf1_socket(struct thread *, struct osf1_socket_args *);
|
||||
int linux_connect(struct thread *, struct linux_connect_args *);
|
||||
int linux_accept(struct thread *, struct linux_accept_args *);
|
||||
int linux_getpriority(struct thread *, struct linux_getpriority_args *);
|
||||
int linux_send(struct thread *, struct linux_send_args *);
|
||||
int linux_recv(struct thread *, struct linux_recv_args *);
|
||||
int osf1_sigreturn(struct thread *, struct osf1_sigreturn_args *);
|
||||
int osf1_sigsuspend(struct thread *, struct osf1_sigsuspend_args *);
|
||||
int linux_recvmsg(struct thread *, struct linux_recvmsg_args *);
|
||||
int linux_sendmsg(struct thread *, struct linux_sendmsg_args *);
|
||||
int osf1_gettimeofday(struct thread *, struct osf1_gettimeofday_args *);
|
||||
int osf1_getrusage(struct thread *, struct osf1_getrusage_args *);
|
||||
int linux_recvfrom(struct thread *, struct linux_recvfrom_args *);
|
||||
int linux_rename(struct thread *, struct linux_rename_args *);
|
||||
int linux_truncate(struct thread *, struct linux_truncate_args *);
|
||||
int linux_ftruncate(struct thread *, struct linux_ftruncate_args *);
|
||||
@ -649,9 +677,11 @@ int osf1_sendto(struct thread *, struct osf1_sendto_args *);
|
||||
int linux_socketpair(struct thread *, struct linux_socketpair_args *);
|
||||
int linux_mkdir(struct thread *, struct linux_mkdir_args *);
|
||||
int linux_rmdir(struct thread *, struct linux_rmdir_args *);
|
||||
int linux_getpeername(struct thread *, struct linux_getpeername_args *);
|
||||
int linux_getrlimit(struct thread *, struct linux_getrlimit_args *);
|
||||
int linux_setrlimit(struct thread *, struct linux_setrlimit_args *);
|
||||
int linux_quotactl(struct thread *, struct linux_quotactl_args *);
|
||||
int linux_getsockname(struct thread *, struct linux_getsockname_args *);
|
||||
int osf1_sigaction(struct thread *, struct osf1_sigaction_args *);
|
||||
int linux_msgctl(struct thread *, struct linux_msgctl_args *);
|
||||
int linux_msgget(struct thread *, struct linux_msgget_args *);
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: src/sys/alpha/linux/syscalls.master,v 1.68 2006/03/18 20:47:36 netchild Exp
|
||||
* created from FreeBSD: src/sys/alpha/linux/syscalls.master,v 1.69 2006/03/20 19:46:56 netchild Exp
|
||||
*/
|
||||
|
||||
#define LINUX_SYS_exit 1
|
||||
@ -68,10 +68,10 @@
|
||||
#define LINUX_SYS_setpriority 96
|
||||
#define LINUX_SYS_osf1_socket 97
|
||||
#define LINUX_SYS_linux_connect 98
|
||||
#define LINUX_SYS_accept 99
|
||||
#define LINUX_SYS_linux_accept 99
|
||||
#define LINUX_SYS_linux_getpriority 100
|
||||
#define LINUX_SYS_osend 101
|
||||
#define LINUX_SYS_orecv 102
|
||||
#define LINUX_SYS_linux_send 101
|
||||
#define LINUX_SYS_linux_recv 102
|
||||
#define LINUX_SYS_osf1_sigreturn 103
|
||||
#define LINUX_SYS_bind 104
|
||||
#define LINUX_SYS_setsockopt 105
|
||||
@ -86,7 +86,7 @@
|
||||
#define LINUX_SYS_writev 121
|
||||
#define LINUX_SYS_fchown 123
|
||||
#define LINUX_SYS_fchmod 124
|
||||
#define LINUX_SYS_recvfrom 125
|
||||
#define LINUX_SYS_linux_recvfrom 125
|
||||
#define LINUX_SYS_setreuid 126
|
||||
#define LINUX_SYS_setregid 127
|
||||
#define LINUX_SYS_linux_rename 128
|
||||
@ -100,12 +100,12 @@
|
||||
#define LINUX_SYS_linux_mkdir 136
|
||||
#define LINUX_SYS_linux_rmdir 137
|
||||
#define LINUX_SYS_utimes 138
|
||||
#define LINUX_SYS_ogetpeername 141
|
||||
#define LINUX_SYS_linux_getpeername 141
|
||||
#define LINUX_SYS_linux_getrlimit 144
|
||||
#define LINUX_SYS_linux_setrlimit 145
|
||||
#define LINUX_SYS_setsid 147
|
||||
#define LINUX_SYS_linux_quotactl 148
|
||||
#define LINUX_SYS_getsockname 150
|
||||
#define LINUX_SYS_linux_getsockname 150
|
||||
#define LINUX_SYS_osf1_sigaction 156
|
||||
#define LINUX_SYS_setdomainname 166
|
||||
#define LINUX_SYS_linux_msgctl 200
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: src/sys/alpha/linux/syscalls.master,v 1.68 2006/03/18 20:47:36 netchild Exp
|
||||
* created from FreeBSD: src/sys/alpha/linux/syscalls.master,v 1.69 2006/03/20 19:46:56 netchild Exp
|
||||
*/
|
||||
|
||||
#include <bsm/audit_kevents.h>
|
||||
@ -118,10 +118,10 @@ struct sysent linux_sysent[] = {
|
||||
{ SYF_MPSAFE | AS(setpriority_args), (sy_call_t *)setpriority, AUE_SETPRIORITY }, /* 96 = setpriority */
|
||||
{ SYF_MPSAFE | AS(osf1_socket_args), (sy_call_t *)osf1_socket, AUE_SOCKET }, /* 97 = osf1_socket */
|
||||
{ SYF_MPSAFE | AS(linux_connect_args), (sy_call_t *)linux_connect, AUE_CONNECT }, /* 98 = linux_connect */
|
||||
{ SYF_MPSAFE | AS(accept_args), (sy_call_t *)oaccept, AUE_ACCEPT }, /* 99 = accept */
|
||||
{ SYF_MPSAFE | AS(linux_accept_args), (sy_call_t *)linux_accept, AUE_ACCEPT }, /* 99 = linux_accept */
|
||||
{ SYF_MPSAFE | AS(linux_getpriority_args), (sy_call_t *)linux_getpriority, AUE_GETPRIORITY }, /* 100 = linux_getpriority */
|
||||
{ SYF_MPSAFE | AS(osend_args), (sy_call_t *)osend, AUE_SEND }, /* 101 = osend */
|
||||
{ SYF_MPSAFE | AS(orecv_args), (sy_call_t *)orecv, AUE_RECV }, /* 102 = orecv */
|
||||
{ SYF_MPSAFE | AS(linux_send_args), (sy_call_t *)linux_send, AUE_SEND }, /* 101 = linux_send */
|
||||
{ SYF_MPSAFE | AS(linux_recv_args), (sy_call_t *)linux_recv, AUE_RECV }, /* 102 = linux_recv */
|
||||
{ SYF_MPSAFE | AS(osf1_sigreturn_args), (sy_call_t *)osf1_sigreturn, AUE_NULL }, /* 103 = osf1_sigreturn */
|
||||
{ SYF_MPSAFE | AS(bind_args), (sy_call_t *)bind, AUE_BIND }, /* 104 = bind */
|
||||
{ SYF_MPSAFE | AS(setsockopt_args), (sy_call_t *)setsockopt, AUE_SETSOCKOPT }, /* 105 = setsockopt */
|
||||
@ -144,7 +144,7 @@ struct sysent linux_sysent[] = {
|
||||
{ 0, (sy_call_t *)nosys, AUE_NULL }, /* 122 = osf_settimeofday */
|
||||
{ AS(fchown_args), (sy_call_t *)fchown, AUE_FCHOWN }, /* 123 = fchown */
|
||||
{ AS(fchmod_args), (sy_call_t *)fchmod, AUE_FCHMOD }, /* 124 = fchmod */
|
||||
{ AS(recvfrom_args), (sy_call_t *)orecvfrom, AUE_RECVFROM }, /* 125 = recvfrom */
|
||||
{ SYF_MPSAFE | AS(linux_recvfrom_args), (sy_call_t *)linux_recvfrom, AUE_RECVFROM }, /* 125 = linux_recvfrom */
|
||||
{ SYF_MPSAFE | AS(setreuid_args), (sy_call_t *)setreuid, AUE_SETREUID }, /* 126 = setreuid */
|
||||
{ SYF_MPSAFE | AS(setregid_args), (sy_call_t *)setregid, AUE_SETREGID }, /* 127 = setregid */
|
||||
{ SYF_MPSAFE | AS(linux_rename_args), (sy_call_t *)linux_rename, AUE_RENAME }, /* 128 = linux_rename */
|
||||
@ -160,7 +160,7 @@ struct sysent linux_sysent[] = {
|
||||
{ SYF_MPSAFE | AS(utimes_args), (sy_call_t *)utimes, AUE_UTIMES }, /* 138 = utimes */
|
||||
{ 0, (sy_call_t *)nosys, AUE_NULL }, /* 139 = */
|
||||
{ 0, (sy_call_t *)nosys, AUE_NULL }, /* 140 = */
|
||||
{ SYF_MPSAFE | AS(ogetpeername_args), (sy_call_t *)ogetpeername, AUE_GETPEERNAME }, /* 141 = ogetpeername */
|
||||
{ SYF_MPSAFE | AS(linux_getpeername_args), (sy_call_t *)linux_getpeername, AUE_GETPEERNAME }, /* 141 = linux_getpeername */
|
||||
{ 0, (sy_call_t *)nosys, AUE_NULL }, /* 142 = */
|
||||
{ 0, (sy_call_t *)nosys, AUE_NULL }, /* 143 = */
|
||||
{ SYF_MPSAFE | AS(linux_getrlimit_args), (sy_call_t *)linux_getrlimit, AUE_GETRLIMIT }, /* 144 = linux_getrlimit */
|
||||
@ -169,7 +169,7 @@ struct sysent linux_sysent[] = {
|
||||
{ SYF_MPSAFE | 0, (sy_call_t *)setsid, AUE_SETSID }, /* 147 = setsid */
|
||||
{ SYF_MPSAFE | 0, (sy_call_t *)linux_quotactl, AUE_QUOTACTL }, /* 148 = linux_quotactl */
|
||||
{ 0, (sy_call_t *)nosys, AUE_NULL }, /* 149 = */
|
||||
{ SYF_MPSAFE | AS(getsockname_args), (sy_call_t *)ogetsockname, AUE_GETSOCKNAME }, /* 150 = getsockname */
|
||||
{ SYF_MPSAFE | AS(linux_getsockname_args), (sy_call_t *)linux_getsockname, AUE_GETSOCKNAME }, /* 150 = linux_getsockname */
|
||||
{ 0, (sy_call_t *)nosys, AUE_NULL }, /* 151 = */
|
||||
{ 0, (sy_call_t *)nosys, AUE_NULL }, /* 152 = */
|
||||
{ 0, (sy_call_t *)nosys, AUE_NULL }, /* 153 = */
|
||||
|
Loading…
x
Reference in New Issue
Block a user