summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/stack.h
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2007-03-13 05:38:21 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2007-03-13 05:38:21 +0000
commit83d01d54d74735a825b28f145b7ad6c30c69473f (patch)
treec3a06cb40a2b5820a9ba32d77a74578bf88f28bf /cpukit/score/include/rtems/score/stack.h
parent2007-03-13 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-83d01d54d74735a825b28f145b7ad6c30c69473f.tar.bz2
2007-03-13 Ralf Corsépius <ralf.corsepius@rtems.org>
* score/include/rtems/score/stack.h: Use size_t for stack sizes.
Diffstat (limited to 'cpukit/score/include/rtems/score/stack.h')
-rw-r--r--cpukit/score/include/rtems/score/stack.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/score/include/rtems/score/stack.h b/cpukit/score/include/rtems/score/stack.h
index f7e3456569..a4ed0a74bc 100644
--- a/cpukit/score/include/rtems/score/stack.h
+++ b/cpukit/score/include/rtems/score/stack.h
@@ -43,7 +43,7 @@ extern "C" {
*/
typedef struct {
/** This is the stack size. */
- uint32_t size;
+ size_t size;
/** This is the low memory address of stack. */
void *area;
} Stack_Control;