From f2351172d5b2b12bf988d9920dba75eb4c6f42d6 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Mon, 6 Nov 2006 17:49:24 +0000 Subject: mips64 patch from Atsushi Nemoto: We should not use old stype ipc_perm for 64-bit mips kernel. I suppose other 64-bit platforms shoule define __IPC_64 also and we can define it unconditionally, but not sure for other archs ... --- libc/misc/sysvipc/ipc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libc') diff --git a/libc/misc/sysvipc/ipc.h b/libc/misc/sysvipc/ipc.h index 62c035b20..5bdbe6471 100644 --- a/libc/misc/sysvipc/ipc.h +++ b/libc/misc/sysvipc/ipc.h @@ -3,7 +3,7 @@ #include #include -#if __WORDSIZE == 32 || defined __alpha__ +#if __WORDSIZE == 32 || defined __alpha__ || defined __mips__ # define __IPC_64 0x100 #else # define __IPC_64 0x0 -- cgit v1.2.3