diff options
-rw-r--r-- | sys/compat/bsdos/syscalls.master | 4 | ||||
-rw-r--r-- | sys/compat/freebsd/syscalls.master | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/sys/compat/bsdos/syscalls.master b/sys/compat/bsdos/syscalls.master index 0a73988e904..1ac5d1174ed 100644 --- a/sys/compat/bsdos/syscalls.master +++ b/sys/compat/bsdos/syscalls.master @@ -1,4 +1,4 @@ - $OpenBSD: syscalls.master,v 1.18 2008/01/05 00:36:11 miod Exp $ + $OpenBSD: syscalls.master,v 1.19 2010/05/23 11:35:18 deraadt Exp $ ; OpenBSD COMPAT_BSDOS system call name/number "master" file. ; (See syscalls.conf to see what it is processed into.) @@ -304,7 +304,7 @@ 169 UNIMPL 170 UNIMPL ; XXX more generally, never on machines where sizeof(void *) != sizeof(int) -#if defined(SYSVSHM) && !defined(alpha) +#if defined(SYSVSHM) && !defined(__alpha__) 171 NOARGS { int compat_10_sys_shmsys(int which, int a2, int a3, \ int a4); } #else diff --git a/sys/compat/freebsd/syscalls.master b/sys/compat/freebsd/syscalls.master index bec6737eb5b..80982e62ef0 100644 --- a/sys/compat/freebsd/syscalls.master +++ b/sys/compat/freebsd/syscalls.master @@ -1,4 +1,4 @@ - $OpenBSD: syscalls.master,v 1.33 2008/01/05 00:36:13 miod Exp $ + $OpenBSD: syscalls.master,v 1.34 2010/05/23 11:35:18 deraadt Exp $ ; $NetBSD: syscalls.master,v 1.3 1995/10/10 18:28:40 mycroft Exp $ ; from: @(#)syscalls.master 8.2 (Berkeley) 1/13/94 @@ -315,21 +315,21 @@ 167 UNIMPL 168 UNIMPL ; XXX more generally, never on machines where sizeof(void *) != sizeof(int) -#if defined(SYSVSEM) && !defined(alpha) +#if defined(SYSVSEM) && !defined(__alpha__) 169 NOARGS { int compat_10_sys_semsys(int which, int a2, int a3, \ int a4, int a5); } #else 169 UNIMPL 1.0 semsys #endif ; XXX more generally, never on machines where sizeof(void *) != sizeof(int) -#if defined(SYSVMSG) && !defined(alpha) +#if defined(SYSVMSG) && !defined(__alpha__) 170 NOARGS { int compat_10_sys_msgsys(int which, int a2, int a3, \ int a4, int a5, int a6); } #else 170 UNIMPL 1.0 msgsys #endif ; XXX more generally, never on machines where sizeof(void *) != sizeof(int) -#if defined(SYSVSHM) && !defined(alpha) +#if defined(SYSVSHM) && !defined(__alpha__) 171 NOARGS { int compat_10_sys_shmsys(int which, int a2, int a3, \ int a4); } #else |