syscalls.master changed.

This commit is contained in:
pk 1996-02-28 16:06:02 +00:00
parent 636580a34f
commit 8c485c3690
2 changed files with 9 additions and 3 deletions

View File

@ -97,6 +97,12 @@ struct sunos_sys_setpgrp_args {
syscallarg(int) pgid;
};
struct sunos_sys_fcntl_args {
syscallarg(int) fd;
syscallarg(int) cmd;
syscallarg(void *) arg;
};
struct sunos_sys_setsockopt_args {
syscallarg(int) s;
syscallarg(int) level;
@ -268,7 +274,7 @@ int compat_43_sys_gethostname __P((struct proc *, void *, register_t *));
int compat_43_sys_sethostname __P((struct proc *, void *, register_t *));
int compat_43_sys_getdtablesize __P((struct proc *, void *, register_t *));
int sys_dup2 __P((struct proc *, void *, register_t *));
int sys_fcntl __P((struct proc *, void *, register_t *));
int sunos_sys_fcntl __P((struct proc *, void *, register_t *));
int sys_select __P((struct proc *, void *, register_t *));
int sys_fsync __P((struct proc *, void *, register_t *));
int sys_setpriority __P((struct proc *, void *, register_t *));

View File

@ -218,8 +218,8 @@ struct sysent sunos_sysent[] = {
sys_dup2 }, /* 90 = dup2 */
{ 0, 0,
sys_nosys }, /* 91 = unimplemented getdopt */
{ 3, s(struct sys_fcntl_args),
sys_fcntl }, /* 92 = fcntl */
{ 3, s(struct sunos_sys_fcntl_args),
sunos_sys_fcntl }, /* 92 = fcntl */
{ 5, s(struct sys_select_args),
sys_select }, /* 93 = select */
{ 0, 0,