summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/thread.h
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2007-05-08 10:43:06 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2007-05-08 10:43:06 +0000
commit728a0bd3aa93e4e7422a69d708360a87bb37477b (patch)
treeb287d2ae83726b2ffde0d05f76c6179144ada0f9 /cpukit/score/include/rtems/score/thread.h
parent2007-05-07 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-728a0bd3aa93e4e7422a69d708360a87bb37477b.tar.bz2
Use size_t for stacksizes.
Diffstat (limited to 'cpukit/score/include/rtems/score/thread.h')
-rw-r--r--cpukit/score/include/rtems/score/thread.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/score/include/rtems/score/thread.h b/cpukit/score/include/rtems/score/thread.h
index 6b87844f0f..c23f9cf05c 100644
--- a/cpukit/score/include/rtems/score/thread.h
+++ b/cpukit/score/include/rtems/score/thread.h
@@ -476,9 +476,9 @@ void _Thread_Dispatch( void );
* Set the Start.stack field to the address of the stack
*/
-uint32_t _Thread_Stack_Allocate(
+size_t _Thread_Stack_Allocate(
Thread_Control *the_thread,
- uint32_t stack_size
+ size_t stack_size
);
/**
@@ -503,7 +503,7 @@ boolean _Thread_Initialize(
Objects_Information *information,
Thread_Control *the_thread,
void *stack_area,
- uint32_t stack_size,
+ size_t stack_size,
boolean is_fp,
Priority_Control priority,
boolean is_preemptible,