summaryrefslogtreecommitdiffstats
path: root/doc/user/region.t
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-12-14 22:48:33 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-12-14 22:48:33 +0000
commit1a0e1a716380575e2da062cf57511e6a53806373 (patch)
tree4b74efd606974a97ca8e76ab944669726cec93a1 /doc/user/region.t
parent2008-12-14 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-1a0e1a716380575e2da062cf57511e6a53806373.tar.bz2
2008-12-14 Joel Sherrill <joel.sherrill@oarcorp.com>
* user/conf.t, user/region.t: Change sizes of heap/region and allocated objects in heap to intptr_t so they can be larger than a single allocatable object (e.g. size_t).
Diffstat (limited to 'doc/user/region.t')
-rw-r--r--doc/user/region.t6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/user/region.t b/doc/user/region.t
index 9228146aaa..555b29fa6c 100644
--- a/doc/user/region.t
+++ b/doc/user/region.t
@@ -247,7 +247,7 @@ and status codes.
rtems_status_code rtems_region_create(
rtems_name name,
void *starting_address,
- uint32_t length,
+ intptr_t length,
uint32_t page_size,
rtems_attribute attribute_set,
rtems_id *id
@@ -433,7 +433,7 @@ delete the region.
rtems_status_code rtems_region_extend(
rtems_id id,
void *starting_address,
- uint32_t length
+ intptr_t length
);
@end example
@end ifset
@@ -484,7 +484,7 @@ extend the region.
@example
rtems_status_code rtems_region_get_segment(
rtems_id id,
- uint32_t size,
+ intptr_t size,
rtems_option option_set,
rtems_interval timeout,
void **segment