summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/ualarm.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2009-11-30 15:49:52 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2009-11-30 15:49:52 +0000
commit1de949a8bda2912d663ad3b296fec0f1a9b03c46 (patch)
treee25cdaccd8695e13d3e58e7b4a091b8920d8a6d6 /cpukit/posix/src/ualarm.c
parentSpaces to tabs. (diff)
downloadrtems-1de949a8bda2912d663ad3b296fec0f1a9b03c46.tar.bz2
Whitespace removal.
Diffstat (limited to '')
-rw-r--r--cpukit/posix/src/ualarm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/posix/src/ualarm.c b/cpukit/posix/src/ualarm.c
index 8910dac217..6b07ff4f31 100644
--- a/cpukit/posix/src/ualarm.c
+++ b/cpukit/posix/src/ualarm.c
@@ -40,10 +40,10 @@ void _POSIX_signals_Ualarm_TSR(
* It's OK, there isn't a way this should fail.
*/
(void) kill( getpid(), SIGALRM );
-
+
/*
* If the reset interval is non-zero, reschedule ourselves.
- */
+ */
_Watchdog_Reset( &_POSIX_signals_Ualarm_timer );
}
@@ -98,7 +98,7 @@ useconds_t ualarm(
tp.tv_nsec = (useconds % TOD_MICROSECONDS_PER_SECOND) * 1000;
ticks = _Timespec_To_ticks( &tp );
if ( ticks == 0 )
- ticks = 1;
+ ticks = 1;
_Watchdog_Insert_ticks( the_timer, _Timespec_To_ticks( &tp ) );
}