Correct name of sysi86 function.

This commit is contained in:
mycroft 1996-01-07 06:09:43 +00:00
parent 0696821419
commit 6761817ae6
6 changed files with 15 additions and 15 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: ibcs2_misc.c,v 1.13 1996/01/06 03:23:49 scottb Exp $ */
/* $NetBSD: ibcs2_misc.c,v 1.14 1996/01/07 06:11:13 mycroft Exp $ */
/*
* Copyright (c) 1994, 1995 Scott Bartram
@ -1399,12 +1399,12 @@ ibcs2_sys_readlink(p, v, retval)
}
int
ibcs2_sysi86(p, v, retval)
ibcs2_sys_sysi86(p, v, retval)
struct proc *p;
void *v;
register_t *retval;
{
struct ibcs2_sysi86_args /* {
struct ibcs2_sys_sysi86_args /* {
syscallarg(int) cmd;
syscallarg(int) arg;
} */ *uap = v;

View File

@ -2,7 +2,7 @@
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.6 1995/10/07 06:26:56 mycroft Exp
* created from NetBSD: syscalls.master,v 1.8 1996/01/07 06:09:43 mycroft Exp
*/
#define IBCS2_SYS_syscall 0
@ -50,7 +50,7 @@
#define IBCS2_SYS_getgid 47
#define IBCS2_SYS_sigsys 48
#define IBCS2_SYS_msgsys 49
#define IBCS2_SYS_ibcs2_sysi86 50
#define IBCS2_SYS_sysi86 50
#define IBCS2_SYS_shmsys 52
#define IBCS2_SYS_semsys 53
#define IBCS2_SYS_ioctl 54

View File

@ -2,7 +2,7 @@
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.6 1995/10/07 06:26:56 mycroft Exp
* created from NetBSD: syscalls.master,v 1.8 1996/01/07 06:09:43 mycroft Exp
*/
#define syscallarg(x) union { x datum; register_t pad; }
@ -165,7 +165,7 @@ struct ibcs2_sys_msgsys_args {
syscallarg(int) a6;
};
struct ibcs2_sysi86_args {
struct ibcs2_sys_sysi86_args {
syscallarg(int) cmd;
syscallarg(int) arg;
};
@ -400,7 +400,7 @@ int ibcs2_sys_sigsys __P((struct proc *, void *, register_t *));
int ibcs2_sys_msgsys __P((struct proc *, void *, register_t *));
#else
#endif
int ibcs2_sysi86 __P((struct proc *, void *, register_t *));
int ibcs2_sys_sysi86 __P((struct proc *, void *, register_t *));
#ifdef SYSVSHM
int ibcs2_sys_shmsys __P((struct proc *, void *, register_t *));
#else

View File

@ -2,7 +2,7 @@
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.6 1995/10/07 06:26:56 mycroft Exp
* created from NetBSD: syscalls.master,v 1.8 1996/01/07 06:09:43 mycroft Exp
*/
char *ibcs2_syscallnames[] = {
@ -60,7 +60,7 @@ char *ibcs2_syscallnames[] = {
#else
"#49 (unimplemented msgsys)", /* 49 = unimplemented msgsys */
#endif
"ibcs2_sysi86", /* 50 = ibcs2_sysi86 */
"sysi86", /* 50 = sysi86 */
"#51 (unimplemented ibcs2_acct)", /* 51 = unimplemented ibcs2_acct */
#ifdef SYSVSHM
"shmsys", /* 52 = shmsys */

View File

@ -2,7 +2,7 @@
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.6 1995/10/07 06:26:56 mycroft Exp
* created from NetBSD: syscalls.master,v 1.8 1996/01/07 06:09:43 mycroft Exp
*/
#include <sys/param.h>
@ -141,8 +141,8 @@ struct sysent ibcs2_sysent[] = {
{ 0, 0,
sys_nosys }, /* 49 = unimplemented msgsys */
#endif
{ 2, s(struct ibcs2_sysi86_args),
ibcs2_sysi86 }, /* 50 = ibcs2_sysi86 */
{ 2, s(struct ibcs2_sys_sysi86_args),
ibcs2_sys_sysi86 }, /* 50 = sysi86 */
{ 0, 0,
sys_nosys }, /* 51 = unimplemented ibcs2_acct */
#ifdef SYSVSHM

View File

@ -1,4 +1,4 @@
$NetBSD: syscalls.master,v 1.7 1996/01/06 03:23:55 scottb Exp $
$NetBSD: syscalls.master,v 1.8 1996/01/07 06:09:43 mycroft Exp $
; @(#)syscalls.master 8.1 (Berkeley) 7/19/93
@ -103,7 +103,7 @@
#else
49 UNIMPL msgsys
#endif
50 STD { int ibcs2_sysi86(int cmd, int arg); }
50 STD { int ibcs2_sys_sysi86(int cmd, int arg); }
51 UNIMPL ibcs2_acct
#ifdef SYSVSHM
52 STD { int ibcs2_sys_shmsys(int which, int a2, int a3, \