summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/wkspace.h
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2007-03-16 07:19:24 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2007-03-16 07:19:24 +0000
commit37c7bfcbd2beb34d67ed8524c0222f043bbb3e00 (patch)
tree307f31d835fed2d771563229ce9ed232ac91171d /cpukit/score/include/rtems/score/wkspace.h
parentUpgrade to newlib-1.15.0-rtems4.8-20070316.diff (diff)
downloadrtems-37c7bfcbd2beb34d67ed8524c0222f043bbb3e00.tar.bz2
Change _Workspace_Handler_initialization and _Workspace_Allocate_or_fatal_error to using size_t.
Diffstat (limited to 'cpukit/score/include/rtems/score/wkspace.h')
-rw-r--r--cpukit/score/include/rtems/score/wkspace.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/score/include/rtems/score/wkspace.h b/cpukit/score/include/rtems/score/wkspace.h
index 2fcc22a0aa..b692b914eb 100644
--- a/cpukit/score/include/rtems/score/wkspace.h
+++ b/cpukit/score/include/rtems/score/wkspace.h
@@ -52,7 +52,7 @@ SCORE_EXTERN Heap_Control _Workspace_Area; /* executive heap header */
*/
void _Workspace_Handler_initialization(
void *starting_address,
- uint32_t size
+ size_t size
);
/** @brief Workspace Allocate or Fail with Fatal Error
@@ -65,7 +65,7 @@ void _Workspace_Handler_initialization(
* @return If successful, the starting address of the allocated memory
*/
void *_Workspace_Allocate_or_fatal_error(
- uint32_t size
+ size_t size
);
#ifndef __RTEMS_APPLICATION__