From 234a36c996c8fe53a0cfd845db24f18314965a94 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 27 Jul 2010 17:37:54 +0000 Subject: 2010-07-27 Joel Sherrill * posix/src/sigsuspend.c: Do not assert unless RTEMS_DEBUG is defined. --- cpukit/posix/src/sigsuspend.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'cpukit/posix/src/sigsuspend.c') diff --git a/cpukit/posix/src/sigsuspend.c b/cpukit/posix/src/sigsuspend.c index 606e8556f5..77b6d90a29 100644 --- a/cpukit/posix/src/sigsuspend.c +++ b/cpukit/posix/src/sigsuspend.c @@ -51,7 +51,9 @@ int sigsuspend( * sigtimedwait() returns the signal number while sigsuspend() * is supposed to return -1 and EINTR when a signal is caught. */ - assert ( status != -1 ); + #if defined(RTEMS_DEBUG) + assert( status != -1 ); + #endif rtems_set_errno_and_return_minus_one( EINTR ); } -- cgit v1.2.3