summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/include/rtems/rtems/timer.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2002-01-22 19:13:10 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2002-01-22 19:13:10 +0000
commit1ad83eb8d83bd2b91ba8b16664cd1726469fed9f (patch)
tree91317d8c183b87887c63f5fc096780f4a76e887c /cpukit/rtems/include/rtems/rtems/timer.h
parent2002-01-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-1ad83eb8d83bd2b91ba8b16664cd1726469fed9f.tar.bz2
2001-01-22 Joel Sherrill <joel@OARcorp.com>
* include/rtems/rtems/timer.h, src/timerserver.c: Add priority argument to rtems_timer_initiate_server().
Diffstat (limited to '')
-rw-r--r--cpukit/rtems/include/rtems/rtems/timer.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/cpukit/rtems/include/rtems/rtems/timer.h b/cpukit/rtems/include/rtems/rtems/timer.h
index 8f9b765037..58d40b3e05 100644
--- a/cpukit/rtems/include/rtems/rtems/timer.h
+++ b/cpukit/rtems/include/rtems/rtems/timer.h
@@ -310,7 +310,10 @@ rtems_status_code rtems_timer_reset(
* It must be invoked before any task-based timers can be initiated.
*/
+#define RTEMS_TIMER_SERVER_DEFAULT_PRIORITY -1
+
rtems_status_code rtems_timer_initiate_server(
+ unsigned32 priority,
unsigned32 stack_size,
rtems_attribute attribute_set
);