Regenerate for r183270.
This commit is contained in:
parent
52c49eeb94
commit
3b732278f8
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 183188 2008-09-19 15:17:32Z obrien
|
||||
* created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 183270 2008-09-22 16:09:16Z obrien
|
||||
*/
|
||||
|
||||
#ifndef _FREEBSD32_SYSPROTO_H_
|
||||
@ -63,6 +63,11 @@ struct freebsd32_sigaltstack_args {
|
||||
char ss_l_[PADL_(struct sigaltstack32 *)]; struct sigaltstack32 * ss; char ss_r_[PADR_(struct sigaltstack32 *)];
|
||||
char oss_l_[PADL_(struct sigaltstack32 *)]; struct sigaltstack32 * oss; char oss_r_[PADR_(struct sigaltstack32 *)];
|
||||
};
|
||||
struct freebsd32_ioctl_args {
|
||||
char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
|
||||
char com_l_[PADL_(uint32_t)]; uint32_t com; char com_r_[PADR_(uint32_t)];
|
||||
char data_l_[PADL_(struct md_ioctl32 *)]; struct md_ioctl32 * data; char data_r_[PADR_(struct md_ioctl32 *)];
|
||||
};
|
||||
struct freebsd32_execve_args {
|
||||
char fname_l_[PADL_(char *)]; char * fname; char fname_r_[PADR_(char *)];
|
||||
char argv_l_[PADL_(u_int32_t *)]; u_int32_t * argv; char argv_r_[PADR_(u_int32_t *)];
|
||||
@ -383,6 +388,7 @@ int freebsd32_recvmsg(struct thread *, struct freebsd32_recvmsg_args *);
|
||||
int freebsd32_sendmsg(struct thread *, struct freebsd32_sendmsg_args *);
|
||||
int freebsd32_recvfrom(struct thread *, struct freebsd32_recvfrom_args *);
|
||||
int freebsd32_sigaltstack(struct thread *, struct freebsd32_sigaltstack_args *);
|
||||
int freebsd32_ioctl(struct thread *, struct freebsd32_ioctl_args *);
|
||||
int freebsd32_execve(struct thread *, struct freebsd32_execve_args *);
|
||||
int freebsd32_setitimer(struct thread *, struct freebsd32_setitimer_args *);
|
||||
int freebsd32_getitimer(struct thread *, struct freebsd32_getitimer_args *);
|
||||
@ -594,6 +600,7 @@ int freebsd6_freebsd32_ftruncate(struct thread *, struct freebsd6_freebsd32_ftru
|
||||
#define FREEBSD32_SYS_AUE_freebsd32_sendmsg AUE_SENDMSG
|
||||
#define FREEBSD32_SYS_AUE_freebsd32_recvfrom AUE_RECVFROM
|
||||
#define FREEBSD32_SYS_AUE_freebsd32_sigaltstack AUE_SIGALTSTACK
|
||||
#define FREEBSD32_SYS_AUE_freebsd32_ioctl AUE_NULL
|
||||
#define FREEBSD32_SYS_AUE_freebsd32_execve AUE_EXECVE
|
||||
#define FREEBSD32_SYS_AUE_freebsd32_setitimer AUE_SETITIMER
|
||||
#define FREEBSD32_SYS_AUE_freebsd32_getitimer AUE_GETITIMER
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 183188 2008-09-19 15:17:32Z obrien
|
||||
* created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 183270 2008-09-22 16:09:16Z obrien
|
||||
*/
|
||||
|
||||
#define FREEBSD32_SYS_syscall 0
|
||||
@ -58,7 +58,7 @@
|
||||
#define FREEBSD32_SYS_acct 51
|
||||
/* 52 is old freebsd32_sigpending */
|
||||
#define FREEBSD32_SYS_freebsd32_sigaltstack 53
|
||||
#define FREEBSD32_SYS_ioctl 54
|
||||
#define FREEBSD32_SYS_freebsd32_ioctl 54
|
||||
#define FREEBSD32_SYS_reboot 55
|
||||
#define FREEBSD32_SYS_revoke 56
|
||||
#define FREEBSD32_SYS_symlink 57
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 183188 2008-09-19 15:17:32Z obrien
|
||||
* created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 183270 2008-09-22 16:09:16Z obrien
|
||||
*/
|
||||
|
||||
const char *freebsd32_syscallnames[] = {
|
||||
@ -61,7 +61,7 @@ const char *freebsd32_syscallnames[] = {
|
||||
"acct", /* 51 = acct */
|
||||
"compat.freebsd32_sigpending", /* 52 = old freebsd32_sigpending */
|
||||
"freebsd32_sigaltstack", /* 53 = freebsd32_sigaltstack */
|
||||
"ioctl", /* 54 = ioctl */
|
||||
"freebsd32_ioctl", /* 54 = freebsd32_ioctl */
|
||||
"reboot", /* 55 = reboot */
|
||||
"revoke", /* 56 = revoke */
|
||||
"symlink", /* 57 = symlink */
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 183188 2008-09-19 15:17:32Z obrien
|
||||
* created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 183270 2008-09-22 16:09:16Z obrien
|
||||
*/
|
||||
|
||||
#include "opt_compat.h"
|
||||
@ -92,7 +92,7 @@ struct sysent freebsd32_sysent[] = {
|
||||
{ AS(acct_args), (sy_call_t *)acct, AUE_ACCT, NULL, 0, 0 }, /* 51 = acct */
|
||||
{ compat(0,freebsd32_sigpending), AUE_SIGPENDING, NULL, 0, 0 }, /* 52 = old freebsd32_sigpending */
|
||||
{ AS(freebsd32_sigaltstack_args), (sy_call_t *)freebsd32_sigaltstack, AUE_SIGALTSTACK, NULL, 0, 0 }, /* 53 = freebsd32_sigaltstack */
|
||||
{ AS(ioctl_args), (sy_call_t *)ioctl, AUE_IOCTL, NULL, 0, 0 }, /* 54 = ioctl */
|
||||
{ AS(freebsd32_ioctl_args), (sy_call_t *)freebsd32_ioctl, AUE_NULL, NULL, 0, 0 }, /* 54 = freebsd32_ioctl */
|
||||
{ AS(reboot_args), (sy_call_t *)reboot, AUE_REBOOT, NULL, 0, 0 }, /* 55 = reboot */
|
||||
{ AS(revoke_args), (sy_call_t *)revoke, AUE_REVOKE, NULL, 0, 0 }, /* 56 = revoke */
|
||||
{ AS(symlink_args), (sy_call_t *)symlink, AUE_SYMLINK, NULL, 0, 0 }, /* 57 = symlink */
|
||||
|
Loading…
Reference in New Issue
Block a user