From 689d017cbd1feb85b22529f3a815c4278b14f9c5 Mon Sep 17 00:00:00 2001 From: gbeauche <> Date: Wed, 25 Feb 2004 22:02:59 +0000 Subject: [PATCH] fix for SheepThreads (native mode) --- SheepShaver/src/Unix/sysdeps.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SheepShaver/src/Unix/sysdeps.h b/SheepShaver/src/Unix/sysdeps.h index 517cb234..194455a7 100644 --- a/SheepShaver/src/Unix/sysdeps.h +++ b/SheepShaver/src/Unix/sysdeps.h @@ -360,7 +360,7 @@ typedef struct timeval tm_time_t; extern uint64 GetTicks_usec(void); extern void Delay_usec(uint32 usec); -#ifdef HAVE_PTHREADS +#if defined(HAVE_PTHREADS) || (defined(__linux__) && defined(__powerpc__)) // Setup pthread attributes extern void Set_pthread_attr(pthread_attr_t *attr, int priority); #endif