mirror of
https://git.rtems.org/rtems-docs/
synced 2025-05-17 14:51:50 +08:00
c-user: Fix region directive prototypes
This commit is contained in:
parent
b1e3b75e90
commit
166d17b1ae
@ -239,8 +239,8 @@ CALLING SEQUENCE:
|
||||
rtems_status_code rtems_region_create(
|
||||
rtems_name name,
|
||||
void *starting_address,
|
||||
intptr_t length,
|
||||
uint32_t page_size,
|
||||
uintptr_t length,
|
||||
uintptr_t page_size,
|
||||
rtems_attribute attribute_set,
|
||||
rtems_id *id
|
||||
);
|
||||
@ -398,7 +398,7 @@ CALLING SEQUENCE:
|
||||
rtems_status_code rtems_region_extend(
|
||||
rtems_id id,
|
||||
void *starting_address,
|
||||
intptr_t length
|
||||
uintptr_t length
|
||||
);
|
||||
|
||||
DIRECTIVE STATUS CODES:
|
||||
@ -440,7 +440,7 @@ CALLING SEQUENCE:
|
||||
|
||||
rtems_status_code rtems_region_get_segment(
|
||||
rtems_id id,
|
||||
intptr_t size,
|
||||
uintptr_t size,
|
||||
rtems_option option_set,
|
||||
rtems_interval timeout,
|
||||
void **segment
|
||||
@ -573,7 +573,7 @@ CALLING SEQUENCE:
|
||||
rtems_status_code rtems_region_get_segment_size(
|
||||
rtems_id id,
|
||||
void *segment,
|
||||
ssize_t *size
|
||||
uintptr_t *size
|
||||
);
|
||||
|
||||
DIRECTIVE STATUS CODES:
|
||||
@ -615,8 +615,8 @@ CALLING SEQUENCE:
|
||||
rtems_status_code rtems_region_resize_segment(
|
||||
rtems_id id,
|
||||
void *segment,
|
||||
ssize_t size,
|
||||
ssize_t *old_size
|
||||
uintptr_t new_size,
|
||||
uintptr_t *old_size
|
||||
);
|
||||
|
||||
DIRECTIVE STATUS CODES:
|
||||
|
Loading…
x
Reference in New Issue
Block a user