From 1a0e1a716380575e2da062cf57511e6a53806373 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Sun, 14 Dec 2008 22:48:33 +0000 Subject: 2008-12-14 Joel Sherrill * 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). --- doc/user/region.t | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'doc/user/region.t') 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 -- cgit v1.2.3