summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/include/rtems/rtems/support.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-12-01 17:31:11 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-12-01 17:31:11 +0000
commite65f596dfd5aaf4deea2d1692417bb389b9a6d61 (patch)
treee366fdc3bff46599db3307a5c57e62335f06c3d3 /cpukit/rtems/include/rtems/rtems/support.h
parent2008-12-01 Joel Sherrill <joel.sherrill@OARcorp.com> (diff)
downloadrtems-e65f596dfd5aaf4deea2d1692417bb389b9a6d61.tar.bz2
2008-12-01 Joel Sherrill <joel.sherrill@OARcorp.com>
* rtems/include/rtems/rtems/region.h, rtems/include/rtems/rtems/support.h, rtems/src/regiongetsegmentsize.c, rtems/src/regionresizesegment.c, rtems/src/workspace.c: Revert ssize_t patch.
Diffstat (limited to '')
-rw-r--r--cpukit/rtems/include/rtems/rtems/support.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/rtems/include/rtems/rtems/support.h b/cpukit/rtems/include/rtems/rtems/support.h
index 8364bdca91..25f6ebf08d 100644
--- a/cpukit/rtems/include/rtems/rtems/support.h
+++ b/cpukit/rtems/include/rtems/rtems/support.h
@@ -79,8 +79,8 @@ bool rtems_workspace_get_information(
* @return TRUE if successful
*/
bool rtems_workspace_allocate(
- ssize_t bytes,
- void **pointer
+ size_t bytes,
+ void **pointer
);
/**