summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/cleanuppop.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/posix/src/cleanuppop.c')
-rw-r--r--cpukit/posix/src/cleanuppop.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/cpukit/posix/src/cleanuppop.c b/cpukit/posix/src/cleanuppop.c
index d7a4c0ca11..49c35dff41 100644
--- a/cpukit/posix/src/cleanuppop.c
+++ b/cpukit/posix/src/cleanuppop.c
@@ -32,9 +32,9 @@ void pthread_cleanup_pop(
Chain_Control *handler_stack;
POSIX_API_Control *thread_support;
ISR_Level level;
-
+
thread_support = _Thread_Executing->API_Extensions[ THREAD_API_POSIX ];
-
+
handler_stack = &thread_support->Cancellation_Handlers;
_ISR_Disable( level );
@@ -42,11 +42,11 @@ void pthread_cleanup_pop(
_ISR_Enable( level );
return;
}
-
- handler = (POSIX_Cancel_Handler_control *)
+
+ handler = (POSIX_Cancel_Handler_control *)
_Chain_Tail( handler_stack )->previous;
_Chain_Extract_unprotected( &handler->Node );
-
+
_ISR_Enable( level );
tmp_handler = *handler;