2009-10-10 Joel Sherrill <joel.sherrill@oarcorp.com>

* rtems/src/timerserver.c: Indentation.
This commit is contained in:
Joel Sherrill
2009-10-10 15:16:47 +00:00
parent 58a8a4717d
commit 2f95352cc6
2 changed files with 6 additions and 2 deletions

View File

@@ -1,3 +1,7 @@
2009-10-10 Joel Sherrill <joel.sherrill@oarcorp.com>
* rtems/src/timerserver.c: Indentation.
2009-10-10 Joel Sherrill <joel.sherrill@oarcorp.com>
* rtems/src/regiondelete.c, rtems/src/regionextend.c,

View File

@@ -159,9 +159,9 @@ static void _Timer_Server_process_ticks_chain(
snapshot = _Watchdog_Ticks_since_boot;
if ( snapshot >= _Timer_Server_ticks_last_time )
ticks = snapshot - _Timer_Server_ticks_last_time;
ticks = snapshot - _Timer_Server_ticks_last_time;
else
ticks = (0xFFFFFFFF - _Timer_Server_ticks_last_time) + snapshot;
ticks = (0xFFFFFFFF - _Timer_Server_ticks_last_time) + snapshot;
_Timer_Server_ticks_last_time = snapshot;
_Watchdog_Adjust_to_chain( &_Timer_Ticks_chain, ticks, to_fire );