from netbsd; Correct name of sysi86 function
authorderaadt <deraadt@openbsd.org>
Mon, 8 Jan 1996 19:31:06 +0000 (19:31 +0000)
committerderaadt <deraadt@openbsd.org>
Mon, 8 Jan 1996 19:31:06 +0000 (19:31 +0000)
sys/compat/ibcs2/ibcs2_misc.c
sys/compat/ibcs2/ibcs2_syscall.h
sys/compat/ibcs2/ibcs2_syscallargs.h
sys/compat/ibcs2/ibcs2_syscalls.c
sys/compat/ibcs2/ibcs2_sysent.c
sys/compat/ibcs2/syscalls.master

index 0f667f9..6641a43 100644 (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;
index 314cfa6..6b6bdf0 100644 (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
index e9dbc37..b82aa34 100644 (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
index eb74dea..35de582 100644 (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 */
index e03c3e1..80bf5d4 100644 (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
index 32ff059..455ef4a 100644 (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
 
 #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, \