Regen for freebsd32_getdirentries().
This commit is contained in:
parent
63f8fe9e8b
commit
23aa8eeafc
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 183361 2008-09-25 20:07:42Z jhb
|
||||
* created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 184183 2008-10-22 21:55:48Z jhb
|
||||
*/
|
||||
|
||||
#ifndef _FREEBSD32_SYSPROTO_H_
|
||||
@ -152,6 +152,12 @@ struct freebsd32_lstat_args {
|
||||
char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
|
||||
char ub_l_[PADL_(struct stat32 *)]; struct stat32 * ub; char ub_r_[PADR_(struct stat32 *)];
|
||||
};
|
||||
struct freebsd32_getdirentries_args {
|
||||
char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
|
||||
char buf_l_[PADL_(char *)]; char * buf; char buf_r_[PADR_(char *)];
|
||||
char count_l_[PADL_(u_int)]; u_int count; char count_r_[PADR_(u_int)];
|
||||
char basep_l_[PADL_(int32_t *)]; int32_t * basep; char basep_r_[PADR_(int32_t *)];
|
||||
};
|
||||
struct freebsd32_sysctl_args {
|
||||
char name_l_[PADL_(int *)]; int * name; char name_r_[PADR_(int *)];
|
||||
char namelen_l_[PADL_(u_int)]; u_int namelen; char namelen_r_[PADR_(u_int)];
|
||||
@ -406,6 +412,7 @@ int freebsd32_shmsys(struct thread *, struct freebsd32_shmsys_args *);
|
||||
int freebsd32_stat(struct thread *, struct freebsd32_stat_args *);
|
||||
int freebsd32_fstat(struct thread *, struct freebsd32_fstat_args *);
|
||||
int freebsd32_lstat(struct thread *, struct freebsd32_lstat_args *);
|
||||
int freebsd32_getdirentries(struct thread *, struct freebsd32_getdirentries_args *);
|
||||
int freebsd32_sysctl(struct thread *, struct freebsd32_sysctl_args *);
|
||||
int freebsd32_futimes(struct thread *, struct freebsd32_futimes_args *);
|
||||
int freebsd32_semctl(struct thread *, struct freebsd32_semctl_args *);
|
||||
@ -618,6 +625,7 @@ int freebsd6_freebsd32_ftruncate(struct thread *, struct freebsd6_freebsd32_ftru
|
||||
#define FREEBSD32_SYS_AUE_freebsd32_stat AUE_STAT
|
||||
#define FREEBSD32_SYS_AUE_freebsd32_fstat AUE_FSTAT
|
||||
#define FREEBSD32_SYS_AUE_freebsd32_lstat AUE_LSTAT
|
||||
#define FREEBSD32_SYS_AUE_freebsd32_getdirentries AUE_GETDIRENTRIES
|
||||
#define FREEBSD32_SYS_AUE_freebsd32_sysctl AUE_SYSCTL
|
||||
#define FREEBSD32_SYS_AUE_freebsd32_futimes AUE_FUTIMES
|
||||
#define FREEBSD32_SYS_AUE_freebsd32_semctl AUE_SEMCTL
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 183361 2008-09-25 20:07:42Z jhb
|
||||
* created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 184183 2008-10-22 21:55:48Z jhb
|
||||
*/
|
||||
|
||||
#define FREEBSD32_SYS_syscall 0
|
||||
@ -177,7 +177,7 @@
|
||||
#define FREEBSD32_SYS_fpathconf 192
|
||||
#define FREEBSD32_SYS_getrlimit 194
|
||||
#define FREEBSD32_SYS_setrlimit 195
|
||||
#define FREEBSD32_SYS_getdirentries 196
|
||||
#define FREEBSD32_SYS_freebsd32_getdirentries 196
|
||||
#define FREEBSD32_SYS_freebsd6_freebsd32_mmap 197
|
||||
#define FREEBSD32_SYS___syscall 198
|
||||
#define FREEBSD32_SYS_freebsd6_freebsd32_lseek 199
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 183361 2008-09-25 20:07:42Z jhb
|
||||
* created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 184183 2008-10-22 21:55:48Z jhb
|
||||
*/
|
||||
|
||||
const char *freebsd32_syscallnames[] = {
|
||||
@ -203,7 +203,7 @@ const char *freebsd32_syscallnames[] = {
|
||||
"#193", /* 193 = nosys */
|
||||
"getrlimit", /* 194 = getrlimit */
|
||||
"setrlimit", /* 195 = setrlimit */
|
||||
"getdirentries", /* 196 = getdirentries */
|
||||
"freebsd32_getdirentries", /* 196 = freebsd32_getdirentries */
|
||||
"compat6.freebsd32_mmap", /* 197 = old freebsd32_mmap */
|
||||
"__syscall", /* 198 = __syscall */
|
||||
"compat6.freebsd32_lseek", /* 199 = old freebsd32_lseek */
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 183361 2008-09-25 20:07:42Z jhb
|
||||
* created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 184183 2008-10-22 21:55:48Z jhb
|
||||
*/
|
||||
|
||||
#include "opt_compat.h"
|
||||
@ -234,7 +234,7 @@ struct sysent freebsd32_sysent[] = {
|
||||
{ 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 193 = nosys */
|
||||
{ AS(__getrlimit_args), (sy_call_t *)getrlimit, AUE_GETRLIMIT, NULL, 0, 0 }, /* 194 = getrlimit */
|
||||
{ AS(__setrlimit_args), (sy_call_t *)setrlimit, AUE_SETRLIMIT, NULL, 0, 0 }, /* 195 = setrlimit */
|
||||
{ AS(getdirentries_args), (sy_call_t *)getdirentries, AUE_GETDIRENTRIES, NULL, 0, 0 }, /* 196 = getdirentries */
|
||||
{ AS(freebsd32_getdirentries_args), (sy_call_t *)freebsd32_getdirentries, AUE_GETDIRENTRIES, NULL, 0, 0 }, /* 196 = freebsd32_getdirentries */
|
||||
{ compat6(AS(freebsd6_freebsd32_mmap_args),freebsd32_mmap), AUE_MMAP, NULL, 0, 0 }, /* 197 = old freebsd32_mmap */
|
||||
{ 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 }, /* 198 = __syscall */
|
||||
{ compat6(AS(freebsd6_freebsd32_lseek_args),freebsd32_lseek), AUE_LSEEK, NULL, 0, 0 }, /* 199 = old freebsd32_lseek */
|
||||
|
Loading…
x
Reference in New Issue
Block a user