summaryrefslogtreecommitdiffstats
path: root/c/src/exec/rtems/optman/no-timer.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/exec/rtems/optman/no-timer.c')
-rw-r--r--c/src/exec/rtems/optman/no-timer.c43
1 files changed, 23 insertions, 20 deletions
diff --git a/c/src/exec/rtems/optman/no-timer.c b/c/src/exec/rtems/optman/no-timer.c
index 1f6deb2e4f..0e32a501a6 100644
--- a/c/src/exec/rtems/optman/no-timer.c
+++ b/c/src/exec/rtems/optman/no-timer.c
@@ -14,11 +14,14 @@
*/
#include <rtems/system.h>
-#include <rtems/object.h>
-#include <rtems/thread.h>
-#include <rtems/timer.h>
-#include <rtems/tod.h>
-#include <rtems/watchdog.h>
+#include <rtems/rtems/status.h>
+#include <rtems/core/object.h>
+#include <rtems/core/thread.h>
+#include <rtems/core/tod.h>
+#include <rtems/core/watchdog.h>
+
+#include <rtems/rtems/types.h>
+#include <rtems/rtems/timer.h>
void _Timer_Manager_initialization(
unsigned32 maximum_timers
@@ -31,7 +34,7 @@ rtems_status_code rtems_timer_create(
Objects_Id *id
)
{
- return( RTEMS_NOT_CONFIGURED );
+ return RTEMS_NOT_CONFIGURED;
}
rtems_status_code rtems_timer_ident(
@@ -39,46 +42,46 @@ rtems_status_code rtems_timer_ident(
Objects_Id *id
)
{
- return( RTEMS_NOT_CONFIGURED );
+ return RTEMS_NOT_CONFIGURED;
}
rtems_status_code rtems_timer_cancel(
Objects_Id id
)
{
- return( RTEMS_NOT_CONFIGURED );
+ return RTEMS_NOT_CONFIGURED;
}
rtems_status_code rtems_timer_delete(
Objects_Id id
)
{
- return( RTEMS_NOT_CONFIGURED );
+ return RTEMS_NOT_CONFIGURED;
}
rtems_status_code rtems_timer_fire_after(
- Objects_Id id,
- rtems_interval ticks,
- Timer_Service routine,
- void *user_data
+ Objects_Id id,
+ rtems_interval ticks,
+ rtems_timer_service_routine_entry routine,
+ void *user_data
)
{
- return( RTEMS_NOT_CONFIGURED );
+ return RTEMS_NOT_CONFIGURED;
}
rtems_status_code rtems_timer_fire_when(
- Objects_Id id,
- rtems_time_of_day *wall_time,
- Timer_Service routine,
- void *user_data
+ Objects_Id id,
+ rtems_time_of_day *wall_time,
+ rtems_timer_service_routine_entry routine,
+ void *user_data
)
{
- return( RTEMS_NOT_CONFIGURED );
+ return RTEMS_NOT_CONFIGURED;
}
rtems_status_code rtems_timer_reset(
Objects_Id id
)
{
- return( RTEMS_NOT_CONFIGURED );
+ return RTEMS_NOT_CONFIGURED;
}