summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/include/rtems/rtems/timer.h
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-04-18 06:05:35 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-04-18 06:05:35 +0000
commit50f32b11653429546d7b8ff2693b5232b885e201 (patch)
treea8821a7e3025ef47082cc21ccbb56551382cdc3f /cpukit/rtems/include/rtems/rtems/timer.h
parentRemove stray white spaces. (diff)
downloadrtems-50f32b11653429546d7b8ff2693b5232b885e201.tar.bz2
Remove stray white spaces.
Diffstat (limited to '')
-rw-r--r--cpukit/rtems/include/rtems/rtems/timer.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/cpukit/rtems/include/rtems/rtems/timer.h b/cpukit/rtems/include/rtems/rtems/timer.h
index 0c54ef2eb3..6e6fe7e4e1 100644
--- a/cpukit/rtems/include/rtems/rtems/timer.h
+++ b/cpukit/rtems/include/rtems/rtems/timer.h
@@ -10,7 +10,7 @@
* + create a timer
* + get an ID of a timer
* + delete a timer
- * + set timer to fire in context of clock tick
+ * + set timer to fire in context of clock tick
* - after a number of ticks have passed
* - when a specified date and time has been reached
* + initiate the timer server task
@@ -58,9 +58,9 @@ typedef enum {
/*
* The following types define a pointer to a timer service routine.
*/
-
+
typedef void rtems_timer_service_routine;
-
+
typedef rtems_timer_service_routine ( *rtems_timer_service_routine_entry )(
rtems_id,
void *
@@ -81,17 +81,17 @@ RTEMS_EXTERN Objects_Information _Timer_Information;
RTEMS_EXTERN Thread_Control *_Timer_Server;
-/*
+/*
* The following chains contain the list of interval timers that are
* executed in the context of the Timer Server.
*
* NOTE: These are extern'ed because they do not have to be in the
- * minimum footprint. They are only really required when
+ * minimum footprint. They are only really required when
* task-based timers are used. Since task-based timers can
* not be started until the server is initiated, these structures
* do not have to be initialized until then. They are declared
* in the same file as _Timer_Server_body.
- */
+ */
extern Chain_Control _Timer_Ticks_chain;
extern Chain_Control _Timer_Seconds_chain;
@@ -311,9 +311,9 @@ rtems_status_code rtems_timer_initiate_server(
typedef struct {
Timer_Classes the_class;
- Watchdog_Interval initial;
- Watchdog_Interval start_time;
- Watchdog_Interval stop_time;
+ Watchdog_Interval initial;
+ Watchdog_Interval start_time;
+ Watchdog_Interval stop_time;
} rtems_timer_information;
rtems_status_code rtems_timer_get_information(