From d54136e027d2565c582df056f873669d4b0ccd61 Mon Sep 17 00:00:00 2001 From: patacongo Date: Sat, 9 Jun 2007 20:39:21 +0000 Subject: Don't call usleep if signals are disabled git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@278 42af7a65-404d-4744-a932-0658087f49c3 --- nuttx/examples/ostest/barrier.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'nuttx/examples/ostest') diff --git a/nuttx/examples/ostest/barrier.c b/nuttx/examples/ostest/barrier.c index f84ae36df..731eaa817 100644 --- a/nuttx/examples/ostest/barrier.c +++ b/nuttx/examples/ostest/barrier.c @@ -49,7 +49,9 @@ static void *barrier_func(void *parameter) int status; printf("barrier_func: Thread %d started\n", id); +#ifndef CONFIG_DISABLE_SIGNALS usleep(500*1000); +#endif /* Take the semaphore */ @@ -68,7 +70,9 @@ static void *barrier_func(void *parameter) printf("barrier_func: ERROR thread %d could not get semaphore value\n", id); } +#ifndef CONFIG_DISABLE_SIGNALS usleep(500*1000); +#endif printf("barrier_func: Thread %d done\n", id); return NULL; } -- cgit v1.2.3