summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/thread.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2007-11-28 22:04:31 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2007-11-28 22:04:31 +0000
commit922183809e1e6842ab42c86a533215c919075794 (patch)
tree46f54b3a15f34d87e72921488e5939ce8da87b69 /cpukit/score/include/rtems/score/thread.h
parent2007-11-28 Joel Sherrill <joel.sherrill@OARcorp.com> (diff)
downloadrtems-922183809e1e6842ab42c86a533215c919075794.tar.bz2
2007-11-28 Joel Sherrill <joel.sherrill@OARcorp.com>
* sapi/src/exinit.c, score/include/rtems/score/object.h, score/include/rtems/score/thread.h, score/src/object.c, score/src/thread.c: Conditionally compile out more code that is specific to multiprocessor configurations.
Diffstat (limited to 'cpukit/score/include/rtems/score/thread.h')
-rw-r--r--cpukit/score/include/rtems/score/thread.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/cpukit/score/include/rtems/score/thread.h b/cpukit/score/include/rtems/score/thread.h
index 87237e69be..5bfd4534e9 100644
--- a/cpukit/score/include/rtems/score/thread.h
+++ b/cpukit/score/include/rtems/score/thread.h
@@ -6,7 +6,7 @@
*/
/*
- * COPYRIGHT (c) 1989-2006.
+ * COPYRIGHT (c) 1989-2007.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -473,8 +473,11 @@ SCORE_EXTERN struct _reent **_Thread_libc_reent;
*/
void _Thread_Handler_initialization (
uint32_t ticks_per_timeslice,
- uint32_t maximum_extensions,
+ uint32_t maximum_extensions
+#if defined(RTEMS_MULTIPROCESSING)
+ ,
uint32_t maximum_proxies
+#endif
);
/**