From 79457a04ab8cef1df90b81d43ba2a73de930dda0 Mon Sep 17 00:00:00 2001 From: patacongo Date: Thu, 7 Jun 2007 00:29:46 +0000 Subject: [PATCH] Don't call fflush if streams are disabled git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@272 42af7a65-404d-4744-a932-0658087f49c3 --- examples/ostest/sighand.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/examples/ostest/sighand.c b/examples/ostest/sighand.c index bc1e5a2424..64b5504587 100644 --- a/examples/ostest/sighand.c +++ b/examples/ostest/sighand.c @@ -151,7 +151,11 @@ static int waiter_main(int argc, char *argv[]) /* Take the semaphore */ printf("waiter_main: Waiting on semaphore\n" ); + +#if CONFIG_NFILE_STREAMS > 0 fflush(stdout); +#endif + status = sem_wait(&sem); if (status != 0) { @@ -176,7 +180,11 @@ static int waiter_main(int argc, char *argv[]) status = sigaction(WAKEUP_SIGNAL, &act, &oact); printf("waiter_main: done\n" ); + +#if CONFIG_NFILE_STREAMS > 0 fflush(stdout); +#endif + threadexited = TRUE; return 0; } @@ -222,7 +230,9 @@ void sighand_test(void) /* Wait a bit */ +#if CONFIG_NFILE_STREAMS > 0 fflush(stdout); +#endif sleep(2); /* Then signal the waiter thread. */ @@ -244,7 +254,9 @@ void sighand_test(void) /* Wait a bit */ +#if CONFIG_NFILE_STREAMS > 0 fflush(stdout); +#endif sleep(2); /* Then check the result */ @@ -260,5 +272,7 @@ void sighand_test(void) } printf("sighand_test: done\n" ); +#if CONFIG_NFILE_STREAMS > 0 fflush(stdout); +#endif }