2005-08-18 Andrew Sinclair <Andrew.Sinclair@elprotech.com>

PR 807/rtems
	* src/timerfireafter.c, src/timerserverfireafter.c: First patch
	returned without exitting dispatching critical section.
This commit is contained in:
Joel Sherrill
2005-08-18 13:39:00 +00:00
parent ecfdafc62e
commit 3d7d233c03
3 changed files with 8 additions and 0 deletions

View File

@@ -1,3 +1,9 @@
2005-08-18 Andrew Sinclair <Andrew.Sinclair@elprotech.com>
PR 807/rtems
* src/timerfireafter.c, src/timerserverfireafter.c: First patch
returned without exitting dispatching critical section.
2005-08-17 Andrew Sinclair <Andrew.Sinclair@elprotech.com>
PR 807/rtems

View File

@@ -75,6 +75,7 @@ rtems_status_code rtems_timer_fire_after(
if ( the_timer->Ticker.state != WATCHDOG_INACTIVE ) {
_ISR_Enable( level );
_Thread_Enable_dispatch();
return RTEMS_SUCCESSFUL;
}

View File

@@ -80,6 +80,7 @@ rtems_status_code rtems_timer_server_fire_after(
if ( the_timer->Ticker.state != WATCHDOG_INACTIVE ) {
_ISR_Enable( level );
_Thread_Enable_dispatch();
return RTEMS_SUCCESSFUL;
}