From 6c2fa3451f35f8d78a31689044b2d19efa4eaca2 Mon Sep 17 00:00:00 2001 From: Markos Chandras Date: Thu, 25 Oct 2012 12:04:02 +0100 Subject: libc/ipc: Allow architectures to define their own __IPC_64 macro New architectures don't define ARCH_WANT_IPC_PARSE_VERSION in their kernel. This means that every cmd passed to semctl,msgctl and shmctl is IPC_64 by default. For these architectures we need to define __IPC_64 as 0. Existing architectures are not affected by this change. Signed-off-by: Markos Chandras Signed-off-by: Bernhard Reutner-Fischer --- libc/misc/sysvipc/ipc.h | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'libc/misc') diff --git a/libc/misc/sysvipc/ipc.h b/libc/misc/sysvipc/ipc.h index 339d1364b..5b861aeef 100644 --- a/libc/misc/sysvipc/ipc.h +++ b/libc/misc/sysvipc/ipc.h @@ -3,10 +3,12 @@ #include #include -#if __WORDSIZE == 32 || defined __alpha__ || defined __mips__ -# define __IPC_64 0x100 -#else -# define __IPC_64 0x0 +#ifndef __IPC_64 +# if __WORDSIZE == 32 || defined __alpha__ || defined __mips__ +# define __IPC_64 0x100 +# else +# define __IPC_64 0x0 +# endif #endif #ifdef __NR_ipc -- cgit v1.2.3