regenerate
This commit is contained in:
parent
1e8dabab3f
commit
00d21a1337
@ -2,7 +2,7 @@
|
|||||||
* System call prototypes.
|
* System call prototypes.
|
||||||
*
|
*
|
||||||
* DO NOT EDIT-- this file is automatically generated.
|
* DO NOT EDIT-- this file is automatically generated.
|
||||||
* created from Id: syscalls.master,v 1.6 1997/12/17 03:12:35 kato Exp
|
* created from Id: syscalls.master,v 1.10 1998/03/29 07:59:10 peter Exp
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef _LINUX_SYSPROTO_H_
|
#ifndef _LINUX_SYSPROTO_H_
|
||||||
@ -55,7 +55,7 @@ struct linux_chmod_args {
|
|||||||
char * path;
|
char * path;
|
||||||
int mode;
|
int mode;
|
||||||
};
|
};
|
||||||
struct linux_chown_args {
|
struct linux_lchown_args {
|
||||||
char * path;
|
char * path;
|
||||||
int uid;
|
int uid;
|
||||||
int gid;
|
int gid;
|
||||||
@ -364,6 +364,11 @@ struct linux_msync_args {
|
|||||||
int len;
|
int len;
|
||||||
int fl;
|
int fl;
|
||||||
};
|
};
|
||||||
|
struct linux_chown_args {
|
||||||
|
char * path;
|
||||||
|
int uid;
|
||||||
|
int gid;
|
||||||
|
};
|
||||||
int linux_setup __P((struct proc *, struct linux_setup_args *));
|
int linux_setup __P((struct proc *, struct linux_setup_args *));
|
||||||
int linux_fork __P((struct proc *, struct linux_fork_args *));
|
int linux_fork __P((struct proc *, struct linux_fork_args *));
|
||||||
int linux_open __P((struct proc *, struct linux_open_args *));
|
int linux_open __P((struct proc *, struct linux_open_args *));
|
||||||
@ -375,7 +380,7 @@ int linux_chdir __P((struct proc *, struct linux_chdir_args *));
|
|||||||
int linux_time __P((struct proc *, struct linux_time_args *));
|
int linux_time __P((struct proc *, struct linux_time_args *));
|
||||||
int linux_mknod __P((struct proc *, struct linux_mknod_args *));
|
int linux_mknod __P((struct proc *, struct linux_mknod_args *));
|
||||||
int linux_chmod __P((struct proc *, struct linux_chmod_args *));
|
int linux_chmod __P((struct proc *, struct linux_chmod_args *));
|
||||||
int linux_chown __P((struct proc *, struct linux_chown_args *));
|
int linux_lchown __P((struct proc *, struct linux_lchown_args *));
|
||||||
int linux_break __P((struct proc *, struct linux_break_args *));
|
int linux_break __P((struct proc *, struct linux_break_args *));
|
||||||
int linux_stat __P((struct proc *, struct linux_stat_args *));
|
int linux_stat __P((struct proc *, struct linux_stat_args *));
|
||||||
int linux_lseek __P((struct proc *, struct linux_lseek_args *));
|
int linux_lseek __P((struct proc *, struct linux_lseek_args *));
|
||||||
@ -458,6 +463,7 @@ int linux_llseek __P((struct proc *, struct linux_llseek_args *));
|
|||||||
int linux_getdents __P((struct proc *, struct linux_getdents_args *));
|
int linux_getdents __P((struct proc *, struct linux_getdents_args *));
|
||||||
int linux_newselect __P((struct proc *, struct linux_newselect_args *));
|
int linux_newselect __P((struct proc *, struct linux_newselect_args *));
|
||||||
int linux_msync __P((struct proc *, struct linux_msync_args *));
|
int linux_msync __P((struct proc *, struct linux_msync_args *));
|
||||||
|
int linux_chown __P((struct proc *, struct linux_chown_args *));
|
||||||
|
|
||||||
#ifdef COMPAT_43
|
#ifdef COMPAT_43
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* System call numbers.
|
* System call numbers.
|
||||||
*
|
*
|
||||||
* DO NOT EDIT-- this file is automatically generated.
|
* DO NOT EDIT-- this file is automatically generated.
|
||||||
* created from Id: syscalls.master,v 1.6 1997/12/17 03:12:35 kato Exp
|
* created from Id: syscalls.master,v 1.10 1998/03/29 07:59:10 peter Exp
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define LINUX_SYS_linux_setup 0
|
#define LINUX_SYS_linux_setup 0
|
||||||
@ -21,7 +21,7 @@
|
|||||||
#define LINUX_SYS_linux_time 13
|
#define LINUX_SYS_linux_time 13
|
||||||
#define LINUX_SYS_linux_mknod 14
|
#define LINUX_SYS_linux_mknod 14
|
||||||
#define LINUX_SYS_linux_chmod 15
|
#define LINUX_SYS_linux_chmod 15
|
||||||
#define LINUX_SYS_linux_chown 16
|
#define LINUX_SYS_linux_lchown 16
|
||||||
#define LINUX_SYS_linux_break 17
|
#define LINUX_SYS_linux_break 17
|
||||||
#define LINUX_SYS_linux_stat 18
|
#define LINUX_SYS_linux_stat 18
|
||||||
#define LINUX_SYS_linux_lseek 19
|
#define LINUX_SYS_linux_lseek 19
|
||||||
@ -161,4 +161,5 @@
|
|||||||
#define LINUX_SYS_sched_get_priority_min 160
|
#define LINUX_SYS_sched_get_priority_min 160
|
||||||
#define LINUX_SYS_sched_rr_get_interval 161
|
#define LINUX_SYS_sched_rr_get_interval 161
|
||||||
#define LINUX_SYS_nanosleep 162
|
#define LINUX_SYS_nanosleep 162
|
||||||
#define LINUX_SYS_MAXSYSCALL 163
|
#define LINUX_SYS_linux_chown 182
|
||||||
|
#define LINUX_SYS_MAXSYSCALL 183
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* System call switch table.
|
* System call switch table.
|
||||||
*
|
*
|
||||||
* DO NOT EDIT-- this file is automatically generated.
|
* DO NOT EDIT-- this file is automatically generated.
|
||||||
* created from Id: syscalls.master,v 1.6 1997/12/17 03:12:35 kato Exp
|
* created from Id: syscalls.master,v 1.10 1998/03/29 07:59:10 peter Exp
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "opt_compat.h"
|
#include "opt_compat.h"
|
||||||
@ -37,7 +37,7 @@ struct sysent linux_sysent[] = {
|
|||||||
{ 1, (sy_call_t *)linux_time }, /* 13 = linux_time */
|
{ 1, (sy_call_t *)linux_time }, /* 13 = linux_time */
|
||||||
{ 3, (sy_call_t *)linux_mknod }, /* 14 = linux_mknod */
|
{ 3, (sy_call_t *)linux_mknod }, /* 14 = linux_mknod */
|
||||||
{ 2, (sy_call_t *)linux_chmod }, /* 15 = linux_chmod */
|
{ 2, (sy_call_t *)linux_chmod }, /* 15 = linux_chmod */
|
||||||
{ 3, (sy_call_t *)linux_chown }, /* 16 = linux_chown */
|
{ 3, (sy_call_t *)linux_lchown }, /* 16 = linux_lchown */
|
||||||
{ 1, (sy_call_t *)linux_break }, /* 17 = linux_break */
|
{ 1, (sy_call_t *)linux_break }, /* 17 = linux_break */
|
||||||
{ 2, (sy_call_t *)linux_stat }, /* 18 = linux_stat */
|
{ 2, (sy_call_t *)linux_stat }, /* 18 = linux_stat */
|
||||||
{ 3, (sy_call_t *)linux_lseek }, /* 19 = linux_lseek */
|
{ 3, (sy_call_t *)linux_lseek }, /* 19 = linux_lseek */
|
||||||
@ -184,4 +184,24 @@ struct sysent linux_sysent[] = {
|
|||||||
{ 1, (sy_call_t *)sched_get_priority_min }, /* 160 = sched_get_priority_min */
|
{ 1, (sy_call_t *)sched_get_priority_min }, /* 160 = sched_get_priority_min */
|
||||||
{ 2, (sy_call_t *)sched_rr_get_interval }, /* 161 = sched_rr_get_interval */
|
{ 2, (sy_call_t *)sched_rr_get_interval }, /* 161 = sched_rr_get_interval */
|
||||||
{ 2, (sy_call_t *)nanosleep }, /* 162 = nanosleep */
|
{ 2, (sy_call_t *)nanosleep }, /* 162 = nanosleep */
|
||||||
|
{ 0, (sy_call_t *)nosys }, /* 163 = mremap */
|
||||||
|
{ 0, (sy_call_t *)nosys }, /* 164 = setresuid */
|
||||||
|
{ 0, (sy_call_t *)nosys }, /* 165 = getresuid */
|
||||||
|
{ 0, (sy_call_t *)nosys }, /* 166 = new_vm86 */
|
||||||
|
{ 0, (sy_call_t *)nosys }, /* 167 = query_module */
|
||||||
|
{ 0, (sy_call_t *)nosys }, /* 168 = poll */
|
||||||
|
{ 0, (sy_call_t *)nosys }, /* 169 = nfsservctl */
|
||||||
|
{ 0, (sy_call_t *)nosys }, /* 170 = setresgid */
|
||||||
|
{ 0, (sy_call_t *)nosys }, /* 171 = getresgid */
|
||||||
|
{ 0, (sy_call_t *)nosys }, /* 172 = prctl */
|
||||||
|
{ 0, (sy_call_t *)nosys }, /* 173 = rt_sigreturn */
|
||||||
|
{ 0, (sy_call_t *)nosys }, /* 174 = rt_sigaction */
|
||||||
|
{ 0, (sy_call_t *)nosys }, /* 175 = rt_sigprocmask */
|
||||||
|
{ 0, (sy_call_t *)nosys }, /* 176 = rt_sigpending */
|
||||||
|
{ 0, (sy_call_t *)nosys }, /* 177 = rt_sigtimedwait */
|
||||||
|
{ 0, (sy_call_t *)nosys }, /* 178 = rt_sigqueueinfo */
|
||||||
|
{ 0, (sy_call_t *)nosys }, /* 179 = rt_sigsuspend */
|
||||||
|
{ 0, (sy_call_t *)nosys }, /* 180 = pread */
|
||||||
|
{ 0, (sy_call_t *)nosys }, /* 181 = pwrite */
|
||||||
|
{ 3, (sy_call_t *)linux_chown }, /* 182 = linux_chown */
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user