Changeset e5b78e2 in rtems
- Timestamp:
- Dec 12, 2002, 1:04:18 AM (18 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 5e622a9
- Parents:
- 2099695
- Location:
- cpukit/posix
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/posix/ChangeLog
r2099695 re5b78e2 1 2002-12-11 Vladimir Nesic <vnesic@dkts.co.yu> 2 3 * src/cancelrun.c, src/cleanuppop.c: Get the last real node not the 4 permanent null last node. 5 1 6 2002-12-09 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 7 -
cpukit/posix/src/cancelrun.c
r2099695 re5b78e2 42 42 while ( !_Chain_Is_empty( handler_stack ) ) { 43 43 _ISR_Disable( level ); 44 handler = (POSIX_Cancel_Handler_control *) _Chain_Tail( handler_stack ); 44 handler = (POSIX_Cancel_Handler_control *) 45 _Chain_Tail( handler_stack )->previous; 45 46 _Chain_Extract_unprotected( &handler->Node ); 46 47 _ISR_Enable( level ); -
cpukit/posix/src/cleanuppop.c
r2099695 re5b78e2 41 41 42 42 _ISR_Disable( level ); 43 handler = (POSIX_Cancel_Handler_control *) _Chain_Tail( handler_stack ); 43 handler = (POSIX_Cancel_Handler_control *) 44 _Chain_Tail( handler_stack )->previous; 44 45 _Chain_Extract_unprotected( &handler->Node ); 45 46 _ISR_Enable( level );
Note: See TracChangeset
for help on using the changeset viewer.