diff options
Diffstat (limited to 'Modules/CheckForPthreads.c')
-rw-r--r-- | Modules/CheckForPthreads.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/CheckForPthreads.c b/Modules/CheckForPthreads.c index d831078..882dc21 100644 --- a/Modules/CheckForPthreads.c +++ b/Modules/CheckForPthreads.c @@ -15,7 +15,7 @@ int main(int ac, char*av[]){ pthread_t tid[2]; pthread_create(&tid[0], 0, runner, (void*)1); pthread_create(&tid[1], 0, runner, (void*)2); - + #if defined(__BEOS__) && !defined(__ZETA__) && !defined(__HAIKU__) // (no usleep on BeOS 5.) usleep(1); // for strange behavior on single-processor sun #endif |