summaryrefslogtreecommitdiffstats
path: root/cpukit/score/inline
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/inline
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/inline')
-rw-r--r--cpukit/score/inline/rtems/score/wkspace.inl2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/score/inline/rtems/score/wkspace.inl b/cpukit/score/inline/rtems/score/wkspace.inl
index 736bb17712..d2c05db2e9 100644
--- a/cpukit/score/inline/rtems/score/wkspace.inl
+++ b/cpukit/score/inline/rtems/score/wkspace.inl
@@ -31,7 +31,7 @@
*/
RTEMS_INLINE_ROUTINE void *_Workspace_Allocate(
- uint32_t size
+ size_t size
)
{
return _Heap_Allocate( &_Workspace_Area, size );