summaryrefslogtreecommitdiffstats
path: root/c/src/exec/rtems/src
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2002-01-18 18:57:48 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2002-01-18 18:57:48 +0000
commit8560ed944d75fa1b442fc4ff51885f1ff00da03e (patch)
tree17a6db2f5b938b79c15cecf54300197433d51b62 /c/src/exec/rtems/src
parent2002-01-18 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-8560ed944d75fa1b442fc4ff51885f1ff00da03e.tar.bz2
2001-01-18 Joel Sherrill <joel@OARcorp.com>
* include/rtems/system.h: Only include cpuopts.h when building a multilib configuration. Some ports still need targopts.h but this small modification lets those ports work non-multilib while fixing being fixed for multilib.
Diffstat (limited to 'c/src/exec/rtems/src')
-rw-r--r--c/src/exec/rtems/src/timerserver.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/c/src/exec/rtems/src/timerserver.c b/c/src/exec/rtems/src/timerserver.c
index 76fa532e91..58c0ea9bf7 100644
--- a/c/src/exec/rtems/src/timerserver.c
+++ b/c/src/exec/rtems/src/timerserver.c
@@ -22,6 +22,7 @@
#include <rtems/score/watchdog.h>
#include <rtems/rtems/tasks.h>
+#include <rtems/rtems/support.h>
#include <rtems/score/thread.h>
/*
@@ -181,7 +182,7 @@ rtems_status_code rtems_timer_initiate_server(
*/
status = rtems_task_create(
- 0x4954454d, /* "TIME" */
+ rtems_build_name( 'T', 'I', 'M', 'E' ),
1, /* create with priority 1 since 0 is illegal */
stack_size, /* let user specify stack size */
RTEMS_NO_PREEMPT, /* no preempt is like an interrupt */