Regenerate
This commit is contained in:
parent
add121a476
commit
a11ea6e325
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: src/sys/compat/freebsd32/syscalls.master,v 1.51 2005/07/13 20:32:42 jhb Exp
|
||||
* created from FreeBSD: src/sys/compat/freebsd32/syscalls.master,v 1.52 2005/09/27 18:04:20 peter Exp
|
||||
*/
|
||||
|
||||
#ifndef _FREEBSD32_SYSPROTO_H_
|
||||
@ -225,6 +225,16 @@ struct freebsd32_sigaction_args {
|
||||
struct freebsd32_sigreturn_args {
|
||||
char sigcntxp_l_[PADL_(const struct freebsd32_ucontext *)]; const struct freebsd32_ucontext * sigcntxp; char sigcntxp_r_[PADR_(const struct freebsd32_ucontext *)];
|
||||
};
|
||||
struct freebsd32_getcontext_args {
|
||||
char ucp_l_[PADL_(struct freebsd32_ucontext *)]; struct freebsd32_ucontext * ucp; char ucp_r_[PADR_(struct freebsd32_ucontext *)];
|
||||
};
|
||||
struct freebsd32_setcontext_args {
|
||||
char ucp_l_[PADL_(const struct freebsd32_ucontext *)]; const struct freebsd32_ucontext * ucp; char ucp_r_[PADR_(const struct freebsd32_ucontext *)];
|
||||
};
|
||||
struct freebsd32_swapcontext_args {
|
||||
char oucp_l_[PADL_(struct freebsd32_ucontext *)]; struct freebsd32_ucontext * oucp; char oucp_r_[PADR_(struct freebsd32_ucontext *)];
|
||||
char ucp_l_[PADL_(const struct freebsd32_ucontext *)]; const struct freebsd32_ucontext * ucp; char ucp_r_[PADR_(const struct freebsd32_ucontext *)];
|
||||
};
|
||||
int freebsd32_wait4(struct thread *, struct freebsd32_wait4_args *);
|
||||
int freebsd32_sigaltstack(struct thread *, struct freebsd32_sigaltstack_args *);
|
||||
int freebsd32_execve(struct thread *, struct freebsd32_execve_args *);
|
||||
@ -259,6 +269,9 @@ int freebsd32_kevent(struct thread *, struct freebsd32_kevent_args *);
|
||||
int freebsd32_sendfile(struct thread *, struct freebsd32_sendfile_args *);
|
||||
int freebsd32_sigaction(struct thread *, struct freebsd32_sigaction_args *);
|
||||
int freebsd32_sigreturn(struct thread *, struct freebsd32_sigreturn_args *);
|
||||
int freebsd32_getcontext(struct thread *, struct freebsd32_getcontext_args *);
|
||||
int freebsd32_setcontext(struct thread *, struct freebsd32_setcontext_args *);
|
||||
int freebsd32_swapcontext(struct thread *, struct freebsd32_swapcontext_args *);
|
||||
|
||||
#ifdef COMPAT_43
|
||||
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: src/sys/compat/freebsd32/syscalls.master,v 1.51 2005/07/13 20:32:42 jhb Exp
|
||||
* created from FreeBSD: src/sys/compat/freebsd32/syscalls.master,v 1.52 2005/09/27 18:04:20 peter Exp
|
||||
*/
|
||||
|
||||
#define FREEBSD32_SYS_syscall 0
|
||||
@ -294,6 +294,9 @@
|
||||
#define FREEBSD32_SYS_fhstatfs 398
|
||||
#define FREEBSD32_SYS_freebsd32_sigaction 416
|
||||
#define FREEBSD32_SYS_freebsd32_sigreturn 417
|
||||
#define FREEBSD32_SYS_freebsd32_getcontext 421
|
||||
#define FREEBSD32_SYS_freebsd32_setcontext 422
|
||||
#define FREEBSD32_SYS_freebsd32_swapcontext 423
|
||||
#define FREEBSD32_SYS_thr_create 430
|
||||
#define FREEBSD32_SYS_thr_exit 431
|
||||
#define FREEBSD32_SYS_thr_self 432
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: src/sys/compat/freebsd32/syscalls.master,v 1.51 2005/07/13 20:32:42 jhb Exp
|
||||
* created from FreeBSD: src/sys/compat/freebsd32/syscalls.master,v 1.52 2005/09/27 18:04:20 peter Exp
|
||||
*/
|
||||
|
||||
const char *freebsd32_syscallnames[] = {
|
||||
@ -428,9 +428,9 @@ const char *freebsd32_syscallnames[] = {
|
||||
"#418", /* 418 = __xstat */
|
||||
"#419", /* 419 = __xfstat */
|
||||
"#420", /* 420 = __xlstat */
|
||||
"#421", /* 421 = getcontext */
|
||||
"#422", /* 422 = setcontext */
|
||||
"#423", /* 423 = swapcontext */
|
||||
"freebsd32_getcontext", /* 421 = freebsd32_getcontext */
|
||||
"freebsd32_setcontext", /* 422 = freebsd32_setcontext */
|
||||
"freebsd32_swapcontext", /* 423 = freebsd32_swapcontext */
|
||||
"#424", /* 424 = swapoff */
|
||||
"#425", /* 425 = __acl_get_link */
|
||||
"#426", /* 426 = __acl_set_link */
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: src/sys/compat/freebsd32/syscalls.master,v 1.51 2005/07/13 20:32:42 jhb Exp
|
||||
* created from FreeBSD: src/sys/compat/freebsd32/syscalls.master,v 1.52 2005/09/27 18:04:20 peter Exp
|
||||
*/
|
||||
|
||||
#include "opt_compat.h"
|
||||
@ -447,9 +447,9 @@ struct sysent freebsd32_sysent[] = {
|
||||
{ 0, (sy_call_t *)nosys, AUE_NULL }, /* 418 = __xstat */
|
||||
{ 0, (sy_call_t *)nosys, AUE_NULL }, /* 419 = __xfstat */
|
||||
{ 0, (sy_call_t *)nosys, AUE_NULL }, /* 420 = __xlstat */
|
||||
{ 0, (sy_call_t *)nosys, AUE_NULL }, /* 421 = getcontext */
|
||||
{ 0, (sy_call_t *)nosys, AUE_NULL }, /* 422 = setcontext */
|
||||
{ 0, (sy_call_t *)nosys, AUE_NULL }, /* 423 = swapcontext */
|
||||
{ SYF_MPSAFE | AS(freebsd32_getcontext_args), (sy_call_t *)freebsd32_getcontext, AUE_NULL }, /* 421 = freebsd32_getcontext */
|
||||
{ SYF_MPSAFE | AS(freebsd32_setcontext_args), (sy_call_t *)freebsd32_setcontext, AUE_NULL }, /* 422 = freebsd32_setcontext */
|
||||
{ SYF_MPSAFE | AS(freebsd32_swapcontext_args), (sy_call_t *)freebsd32_swapcontext, AUE_NULL }, /* 423 = freebsd32_swapcontext */
|
||||
{ 0, (sy_call_t *)nosys, AUE_NULL }, /* 424 = swapoff */
|
||||
{ 0, (sy_call_t *)nosys, AUE_NULL }, /* 425 = __acl_get_link */
|
||||
{ 0, (sy_call_t *)nosys, AUE_NULL }, /* 426 = __acl_set_link */
|
||||
|
Loading…
Reference in New Issue
Block a user