From f254555238e0c9dcd2cd53c08d01ed5418fba47d Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 22 Apr 1997 19:57:02 +0000 Subject: multiprocessing fixed on linux by fixing cpu.c so correct form of semctl was being invoked. --- cpukit/score/cpu/unix/cpu.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'cpukit/score/cpu/unix') diff --git a/cpukit/score/cpu/unix/cpu.c b/cpukit/score/cpu/unix/cpu.c index 0ad145757b..836268aa9e 100644 --- a/cpukit/score/cpu/unix/cpu.c +++ b/cpukit/score/cpu/unix/cpu.c @@ -24,7 +24,7 @@ #define __EXTENSIONS__ #endif -#if defined(linux) +#if defined(__linux__) #define MALLOC_0_RETURNS_NULL #endif @@ -873,9 +873,10 @@ void _CPU_SHM_Init( help.val = 1; status = semctl( _CPU_SHM_Semid, i, SETVAL, help ); -#endif -#if defined(hpux) +#elif defined(hpux) || defined(__linux__) status = semctl( _CPU_SHM_Semid, i, SETVAL, 1 ); +#else +#error "Not a supported unix variant" #endif fix_syscall_errno(); /* in case of newlib */ -- cgit v1.2.3