summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/pthreadsigmask.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/posix/src/pthreadsigmask.c')
-rw-r--r--cpukit/posix/src/pthreadsigmask.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/posix/src/pthreadsigmask.c b/cpukit/posix/src/pthreadsigmask.c
index a04007402f..59bc688fcd 100644
--- a/cpukit/posix/src/pthreadsigmask.c
+++ b/cpukit/posix/src/pthreadsigmask.c
@@ -41,7 +41,7 @@ int pthread_sigmask(
if ( oset )
*oset = api->signals_blocked;
-
+
if ( !set )
return 0;
@@ -63,7 +63,7 @@ int pthread_sigmask(
/* XXX evaluate the new set */
- if ( ~api->signals_blocked &
+ if ( ~api->signals_blocked &
(api->signals_pending | _POSIX_signals_Pending) ) {
_Thread_Executing->do_post_task_switch_extension = TRUE;
_Thread_Dispatch();