summaryrefslogtreecommitdiffstats
path: root/cpukit/sapi
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2007-12-10 17:51:58 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2007-12-10 17:51:58 +0000
commitc28004fdf8e9cdac49064e5aca8e6b812a54613f (patch)
tree53a1cc1e7f58d6fee868bb4b769580ba5796e415 /cpukit/sapi
parent2007-12-09 Till Straumann <strauman@slac.stanford.edu> (diff)
downloadrtems-c28004fdf8e9cdac49064e5aca8e6b812a54613f.tar.bz2
2007-12-10 Joel Sherrill <joel.sherrill@oarcorp.com>
* sapi/include/rtems/config.h: Fix idle thread prototype.
Diffstat (limited to 'cpukit/sapi')
-rw-r--r--cpukit/sapi/include/rtems/config.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/sapi/include/rtems/config.h b/cpukit/sapi/include/rtems/config.h
index b41a2cfa98..1219a9416c 100644
--- a/cpukit/sapi/include/rtems/config.h
+++ b/cpukit/sapi/include/rtems/config.h
@@ -113,7 +113,7 @@ typedef struct {
/** This element points to the BSP's optional idle task which may override
* the default one provided with RTEMS.
*/
- void (*idle_task)( void );
+ void (*idle_task)( uint32_t );
/** This field specifies the size of the IDLE task's stack. If less than or
* equal to the minimum stack size, then the IDLE task will have the minimum
@@ -176,10 +176,10 @@ SAPI_EXTERN rtems_configuration_table *_Configuration_Table;
(&_Configuration_Table)
#define rtems_configuration_get_work_space_start() \
- (_Configuration_Table->work_space_start)
+ (Configuration.work_space_start)
#define rtems_configuration_get_work_space_size() \
- (_Configuration_Table->work_space_size)
+ (Configuration.work_space_size)
#define rtems_configuration_get_maximum_extensions() \
(_Configuration_Table->maximum_extensions)