diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2004-05-03 17:38:49 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2004-05-03 17:38:49 +0000 |
commit | 7ee12b987c71eed938605394f2489b79a5bddd78 (patch) | |
tree | c476ccbe6a8e1e76cd7563cd6d01810d4fff3351 /sys/compat/common/Makefile | |
parent | ca3f78ca5742c4bebeeeebecaa0d76df2987c4f7 (diff) |
POSIX says the length parameter for semop(2) and shmget(2) should be size_t.
Create new syscalls with the correct parameters and add compat versions
for the old ones under COMPAT_35.
Diffstat (limited to 'sys/compat/common/Makefile')
-rw-r--r-- | sys/compat/common/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/compat/common/Makefile b/sys/compat/common/Makefile index cd44db92fb3..90c4e67399f 100644 --- a/sys/compat/common/Makefile +++ b/sys/compat/common/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.16 2004/02/27 17:36:16 deraadt Exp $ +# $OpenBSD: Makefile,v 1.17 2004/05/03 17:38:48 millert Exp $ # $NetBSD: Makefile,v 1.8 1996/05/18 15:52:19 christos Exp $ LIB= compat @@ -10,9 +10,9 @@ MACHINE_ARCH= ${XMACHINE_ARCH} .PATH: ${COMPATDIR} SRCS= compat_exec.c compat_util.c compat_dir.c compat_vm.c \ - kern_exit_43.c kern_ipc_23.c kern_info_09.c kern_info_43.c \ - kern_resource_43.c kern_sig_43.c tty_43.c uipc_syscalls_43.c \ - vfs_syscalls_25.c vfs_syscalls_43.c vm_43.c + kern_exit_43.c kern_ipc_23.c kern_ipc_35.c kern_info_09.c \ + kern_info_43.c kern_resource_43.c kern_sig_43.c tty_43.c \ + uipc_syscalls_43.c vfs_syscalls_25.c vfs_syscalls_43.c vm_43.c # really, all machines where sizeof(int) != sizeof(long) .if (${MACHINE_ARCH} != "alpha") && (${MACHINE_ARCH} != "amd64") && \ |