summaryrefslogtreecommitdiff
path: root/nuttx/examples
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2007-06-09 20:39:21 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2007-06-09 20:39:21 +0000
commitd54136e027d2565c582df056f873669d4b0ccd61 (patch)
treea4c9028afa0739c4c63f42056efa89447e3a2b04 /nuttx/examples
parente2dfa4a4d0f4bb032baa68cbce7ab64b48d8d7ba (diff)
downloadpx4-nuttx-d54136e027d2565c582df056f873669d4b0ccd61.tar.gz
px4-nuttx-d54136e027d2565c582df056f873669d4b0ccd61.tar.bz2
px4-nuttx-d54136e027d2565c582df056f873669d4b0ccd61.zip
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
Diffstat (limited to 'nuttx/examples')
-rw-r--r--nuttx/examples/ostest/barrier.c4
1 files changed, 4 insertions, 0 deletions
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;
}