Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/pgoyette-compat]: src/sys/compat/sunos Conditionalize the compat_10 sysv...



details:   https://anonhg.NetBSD.org/src/rev/e0a7b86c7813
branches:  pgoyette-compat
changeset: 830818:e0a7b86c7813
user:      pgoyette <pgoyette%NetBSD.org@localhost>
date:      Sat Sep 29 02:29:42 2018 +0000

description:
Conditionalize the compat_10 sysv ipc syscalls on both the COMPAT_10
and SYSVxxx attributes

diffstat:

 sys/compat/sunos/syscalls.master |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (32 lines):

diff -r a346fb526ad3 -r e0a7b86c7813 sys/compat/sunos/syscalls.master
--- a/sys/compat/sunos/syscalls.master  Sat Sep 29 02:06:46 2018 +0000
+++ b/sys/compat/sunos/syscalls.master  Sat Sep 29 02:29:42 2018 +0000
@@ -1,4 +1,4 @@
-       $NetBSD: syscalls.master,v 1.80.2.1 2018/09/29 02:06:14 pgoyette Exp $
+       $NetBSD: syscalls.master,v 1.80.2.2 2018/09/29 02:29:42 pgoyette Exp $
 
 ;      @(#)syscalls.master     8.1 (Berkeley) 7/19/93
 
@@ -276,19 +276,19 @@
                            int flags, void *data); }
 168    STD             { int|sunos_sys||ustat(int dev, \
                            struct sunos_ustat *buf); }
-#ifdef SYSVSEM
+#if defined(SYSVSEM) && defined(COMPAT_10)
 169    NOARGS          { int|compat_10_sys||semsys(int which, int a2, int a3, \
                            int a4, int a5); }
 #else
 169    UNIMPL          semsys
 #endif
-#ifdef SYSVMSG
+#if defined(SYSVMSG) && defined(COMPAT_10)
 170    NOARGS          { int|compat_10_sys||msgsys(int which, int a2, int a3, \
                            int a4, int a5, int a6); }
 #else
 170    UNIMPL          msgsys
 #endif
-#ifdef SYSVSHM
+#if defined(SYSVSHM) && defined(COMPAT_10)
 171    NOARGS          { int|compat_10_sys||shmsys(int which, int a2, int a3, \
                            int a4); }
 #else



Home | Main Index | Thread Index | Old Index