Regen
This commit is contained in:
parent
a8c6d6d0ba
commit
774b72e12e
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: src/sys/compat/freebsd32/syscalls.master,v 1.100 2008/03/31 12:08:30 kib Exp
|
||||
* created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 180433 2008-07-10 17:45:57Z brooks
|
||||
*/
|
||||
|
||||
#ifndef _FREEBSD32_SYSPROTO_H_
|
||||
@ -328,6 +328,35 @@ struct freebsd32_ftruncate_args {
|
||||
char lengthlo_l_[PADL_(u_int32_t)]; u_int32_t lengthlo; char lengthlo_r_[PADR_(u_int32_t)];
|
||||
char lengthhi_l_[PADL_(u_int32_t)]; u_int32_t lengthhi; char lengthhi_r_[PADR_(u_int32_t)];
|
||||
};
|
||||
struct freebsd32_cpuset_setid_args {
|
||||
char which_l_[PADL_(cpuwhich_t)]; cpuwhich_t which; char which_r_[PADR_(cpuwhich_t)];
|
||||
char idlo_l_[PADL_(uint32_t)]; uint32_t idlo; char idlo_r_[PADR_(uint32_t)];
|
||||
char idhi_l_[PADL_(uint32_t)]; uint32_t idhi; char idhi_r_[PADR_(uint32_t)];
|
||||
char setid_l_[PADL_(cpusetid_t)]; cpusetid_t setid; char setid_r_[PADR_(cpusetid_t)];
|
||||
};
|
||||
struct freebsd32_cpuset_getid_args {
|
||||
char level_l_[PADL_(cpulevel_t)]; cpulevel_t level; char level_r_[PADR_(cpulevel_t)];
|
||||
char which_l_[PADL_(cpuwhich_t)]; cpuwhich_t which; char which_r_[PADR_(cpuwhich_t)];
|
||||
char idlo_l_[PADL_(uint32_t)]; uint32_t idlo; char idlo_r_[PADR_(uint32_t)];
|
||||
char idhi_l_[PADL_(uint32_t)]; uint32_t idhi; char idhi_r_[PADR_(uint32_t)];
|
||||
char setid_l_[PADL_(cpusetid_t *)]; cpusetid_t * setid; char setid_r_[PADR_(cpusetid_t *)];
|
||||
};
|
||||
struct freebsd32_cpuset_getaffinity_args {
|
||||
char level_l_[PADL_(cpulevel_t)]; cpulevel_t level; char level_r_[PADR_(cpulevel_t)];
|
||||
char which_l_[PADL_(cpuwhich_t)]; cpuwhich_t which; char which_r_[PADR_(cpuwhich_t)];
|
||||
char idlo_l_[PADL_(uint32_t)]; uint32_t idlo; char idlo_r_[PADR_(uint32_t)];
|
||||
char idhi_l_[PADL_(uint32_t)]; uint32_t idhi; char idhi_r_[PADR_(uint32_t)];
|
||||
char cpusetsize_l_[PADL_(size_t)]; size_t cpusetsize; char cpusetsize_r_[PADR_(size_t)];
|
||||
char mask_l_[PADL_(cpuset_t *)]; cpuset_t * mask; char mask_r_[PADR_(cpuset_t *)];
|
||||
};
|
||||
struct freebsd32_cpuset_setaffinity_args {
|
||||
char level_l_[PADL_(cpulevel_t)]; cpulevel_t level; char level_r_[PADR_(cpulevel_t)];
|
||||
char which_l_[PADL_(cpuwhich_t)]; cpuwhich_t which; char which_r_[PADR_(cpuwhich_t)];
|
||||
char idlo_l_[PADL_(uint32_t)]; uint32_t idlo; char idlo_r_[PADR_(uint32_t)];
|
||||
char idhi_l_[PADL_(uint32_t)]; uint32_t idhi; char idhi_r_[PADR_(uint32_t)];
|
||||
char cpusetsize_l_[PADL_(size_t)]; size_t cpusetsize; char cpusetsize_r_[PADR_(size_t)];
|
||||
char mask_l_[PADL_(const cpuset_t *)]; const cpuset_t * mask; char mask_r_[PADR_(const cpuset_t *)];
|
||||
};
|
||||
struct freebsd32_fexecve_args {
|
||||
char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
|
||||
char argv_l_[PADL_(u_int32_t *)]; u_int32_t * argv; char argv_r_[PADR_(u_int32_t *)];
|
||||
@ -401,6 +430,10 @@ int freebsd32_mmap(struct thread *, struct freebsd32_mmap_args *);
|
||||
int freebsd32_lseek(struct thread *, struct freebsd32_lseek_args *);
|
||||
int freebsd32_truncate(struct thread *, struct freebsd32_truncate_args *);
|
||||
int freebsd32_ftruncate(struct thread *, struct freebsd32_ftruncate_args *);
|
||||
int freebsd32_cpuset_setid(struct thread *, struct freebsd32_cpuset_setid_args *);
|
||||
int freebsd32_cpuset_getid(struct thread *, struct freebsd32_cpuset_getid_args *);
|
||||
int freebsd32_cpuset_getaffinity(struct thread *, struct freebsd32_cpuset_getaffinity_args *);
|
||||
int freebsd32_cpuset_setaffinity(struct thread *, struct freebsd32_cpuset_setaffinity_args *);
|
||||
int freebsd32_fexecve(struct thread *, struct freebsd32_fexecve_args *);
|
||||
int freebsd32_fstatat(struct thread *, struct freebsd32_fstatat_args *);
|
||||
int freebsd32_futimesat(struct thread *, struct freebsd32_futimesat_args *);
|
||||
@ -607,6 +640,10 @@ int freebsd6_freebsd32_ftruncate(struct thread *, struct freebsd6_freebsd32_ftru
|
||||
#define FREEBSD32_SYS_AUE_freebsd32_lseek AUE_LSEEK
|
||||
#define FREEBSD32_SYS_AUE_freebsd32_truncate AUE_TRUNCATE
|
||||
#define FREEBSD32_SYS_AUE_freebsd32_ftruncate AUE_FTRUNCATE
|
||||
#define FREEBSD32_SYS_AUE_freebsd32_cpuset_setid AUE_NULL
|
||||
#define FREEBSD32_SYS_AUE_freebsd32_cpuset_getid AUE_NULL
|
||||
#define FREEBSD32_SYS_AUE_freebsd32_cpuset_getaffinity AUE_NULL
|
||||
#define FREEBSD32_SYS_AUE_freebsd32_cpuset_setaffinity AUE_NULL
|
||||
#define FREEBSD32_SYS_AUE_freebsd32_fexecve AUE_FEXECVE
|
||||
#define FREEBSD32_SYS_AUE_freebsd32_fstatat AUE_FSTATAT
|
||||
#define FREEBSD32_SYS_AUE_freebsd32_futimesat AUE_FUTIMESAT
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: src/sys/compat/freebsd32/syscalls.master,v 1.100 2008/03/31 12:08:30 kib Exp
|
||||
* created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 180433 2008-07-10 17:45:57Z brooks
|
||||
*/
|
||||
|
||||
#define FREEBSD32_SYS_syscall 0
|
||||
@ -336,10 +336,10 @@
|
||||
#define FREEBSD32_SYS_shm_open 482
|
||||
#define FREEBSD32_SYS_shm_unlink 483
|
||||
#define FREEBSD32_SYS_cpuset 484
|
||||
#define FREEBSD32_SYS_cpuset_setid 485
|
||||
#define FREEBSD32_SYS_cpuset_getid 486
|
||||
#define FREEBSD32_SYS_cpuset_getaffinity 487
|
||||
#define FREEBSD32_SYS_cpuset_setaffinity 488
|
||||
#define FREEBSD32_SYS_freebsd32_cpuset_setid 485
|
||||
#define FREEBSD32_SYS_freebsd32_cpuset_getid 486
|
||||
#define FREEBSD32_SYS_freebsd32_cpuset_getaffinity 487
|
||||
#define FREEBSD32_SYS_freebsd32_cpuset_setaffinity 488
|
||||
#define FREEBSD32_SYS_faccessat 489
|
||||
#define FREEBSD32_SYS_fchmodat 490
|
||||
#define FREEBSD32_SYS_fchownat 491
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: src/sys/compat/freebsd32/syscalls.master,v 1.100 2008/03/31 12:08:30 kib Exp
|
||||
* created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 180433 2008-07-10 17:45:57Z brooks
|
||||
*/
|
||||
|
||||
const char *freebsd32_syscallnames[] = {
|
||||
@ -492,10 +492,10 @@ const char *freebsd32_syscallnames[] = {
|
||||
"shm_open", /* 482 = shm_open */
|
||||
"shm_unlink", /* 483 = shm_unlink */
|
||||
"cpuset", /* 484 = cpuset */
|
||||
"cpuset_setid", /* 485 = cpuset_setid */
|
||||
"cpuset_getid", /* 486 = cpuset_getid */
|
||||
"cpuset_getaffinity", /* 487 = cpuset_getaffinity */
|
||||
"cpuset_setaffinity", /* 488 = cpuset_setaffinity */
|
||||
"freebsd32_cpuset_setid", /* 485 = freebsd32_cpuset_setid */
|
||||
"freebsd32_cpuset_getid", /* 486 = freebsd32_cpuset_getid */
|
||||
"freebsd32_cpuset_getaffinity", /* 487 = freebsd32_cpuset_getaffinity */
|
||||
"freebsd32_cpuset_setaffinity", /* 488 = freebsd32_cpuset_setaffinity */
|
||||
"faccessat", /* 489 = faccessat */
|
||||
"fchmodat", /* 490 = fchmodat */
|
||||
"fchownat", /* 491 = fchownat */
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: src/sys/compat/freebsd32/syscalls.master,v 1.100 2008/03/31 12:08:30 kib Exp
|
||||
* created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 180433 2008-07-10 17:45:57Z brooks
|
||||
*/
|
||||
|
||||
#include "opt_compat.h"
|
||||
@ -523,10 +523,10 @@ struct sysent freebsd32_sysent[] = {
|
||||
{ AS(shm_open_args), (sy_call_t *)shm_open, AUE_SHMOPEN, NULL, 0, 0 }, /* 482 = shm_open */
|
||||
{ AS(shm_unlink_args), (sy_call_t *)shm_unlink, AUE_SHMUNLINK, NULL, 0, 0 }, /* 483 = shm_unlink */
|
||||
{ AS(cpuset_args), (sy_call_t *)cpuset, AUE_NULL, NULL, 0, 0 }, /* 484 = cpuset */
|
||||
{ AS(cpuset_setid_args), (sy_call_t *)cpuset_setid, AUE_NULL, NULL, 0, 0 }, /* 485 = cpuset_setid */
|
||||
{ AS(cpuset_getid_args), (sy_call_t *)cpuset_getid, AUE_NULL, NULL, 0, 0 }, /* 486 = cpuset_getid */
|
||||
{ AS(cpuset_getaffinity_args), (sy_call_t *)cpuset_getaffinity, AUE_NULL, NULL, 0, 0 }, /* 487 = cpuset_getaffinity */
|
||||
{ AS(cpuset_setaffinity_args), (sy_call_t *)cpuset_setaffinity, AUE_NULL, NULL, 0, 0 }, /* 488 = cpuset_setaffinity */
|
||||
{ AS(freebsd32_cpuset_setid_args), (sy_call_t *)freebsd32_cpuset_setid, AUE_NULL, NULL, 0, 0 }, /* 485 = freebsd32_cpuset_setid */
|
||||
{ AS(freebsd32_cpuset_getid_args), (sy_call_t *)freebsd32_cpuset_getid, AUE_NULL, NULL, 0, 0 }, /* 486 = freebsd32_cpuset_getid */
|
||||
{ AS(freebsd32_cpuset_getaffinity_args), (sy_call_t *)freebsd32_cpuset_getaffinity, AUE_NULL, NULL, 0, 0 }, /* 487 = freebsd32_cpuset_getaffinity */
|
||||
{ AS(freebsd32_cpuset_setaffinity_args), (sy_call_t *)freebsd32_cpuset_setaffinity, AUE_NULL, NULL, 0, 0 }, /* 488 = freebsd32_cpuset_setaffinity */
|
||||
{ AS(faccessat_args), (sy_call_t *)faccessat, AUE_FACCESSAT, NULL, 0, 0 }, /* 489 = faccessat */
|
||||
{ AS(fchmodat_args), (sy_call_t *)fchmodat, AUE_FCHMODAT, NULL, 0, 0 }, /* 490 = fchmodat */
|
||||
{ AS(fchownat_args), (sy_call_t *)fchownat, AUE_FCHOWNAT, NULL, 0, 0 }, /* 491 = fchownat */
|
||||
|
Loading…
x
Reference in New Issue
Block a user