2009-05-21 Joel Sherrill <joel.sherrill@OARcorp.com>

PR 1413/cpukit
	* rtems/src/timerserver.c: Fix bug where server based timers which
	reinitiated themselves did not get reinserted onto timer chain.
This commit is contained in:
Joel Sherrill
2009-05-21 15:39:51 +00:00
parent 1dc1da58a1
commit 43fe77c23b
2 changed files with 12 additions and 0 deletions

View File

@@ -1,3 +1,9 @@
2009-05-21 Joel Sherrill <joel.sherrill@OARcorp.com>
PR 1413/cpukit
* rtems/src/timerserver.c: Fix bug where server based timers which
reinitiated themselves did not get reinserted onto timer chain.
2009-05-20 Joel Sherrill <joel.sherrill@oarcorp.com>
* librpc/src/xdr/xdr_float.c: Change detection logic for h8300.

View File

@@ -316,7 +316,13 @@ rtems_task _Timer_Server_body(
(*watch->routine)( watch->id, watch->user_data );
}
/*
* Insert the timers that have been requested to be inserted.
*/
_Timer_Server_process_insertions();
}
}
/**