summaryrefslogtreecommitdiffstats
path: root/c
diff options
context:
space:
mode:
Diffstat (limited to 'c')
-rw-r--r--c/src/exec/rtems/ChangeLog7
-rw-r--r--c/src/exec/rtems/src/timerserver.c3
2 files changed, 9 insertions, 1 deletions
diff --git a/c/src/exec/rtems/ChangeLog b/c/src/exec/rtems/ChangeLog
index 94151de535..d2b8e2087f 100644
--- a/c/src/exec/rtems/ChangeLog
+++ b/c/src/exec/rtems/ChangeLog
@@ -1,3 +1,10 @@
+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.
+
2001-01-16 Joel Sherrill <joel@OARcorp.com>
* Added task-based timers to the Timer Manager. This added three
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 */