mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-27 06:58:19 +00:00
2009-10-10 Joel Sherrill <joel.sherrill@oarcorp.com>
* rtems/src/timerserver.c: Indentation.
This commit is contained in:
@@ -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,
|
||||
|
||||
@@ -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 );
|
||||
|
||||
Reference in New Issue
Block a user