mirror of
https://git.rtems.org/rtems-docs/
synced 2025-05-17 22:02:05 +08:00
c-user: Fix region directive prototypes
This commit is contained in:
parent
b1e3b75e90
commit
166d17b1ae
@ -237,12 +237,12 @@ CALLING SEQUENCE:
|
|||||||
.. code-block:: c
|
.. code-block:: c
|
||||||
|
|
||||||
rtems_status_code rtems_region_create(
|
rtems_status_code rtems_region_create(
|
||||||
rtems_name name,
|
rtems_name name,
|
||||||
void *starting_address,
|
void *starting_address,
|
||||||
intptr_t length,
|
uintptr_t length,
|
||||||
uint32_t page_size,
|
uintptr_t page_size,
|
||||||
rtems_attribute attribute_set,
|
rtems_attribute attribute_set,
|
||||||
rtems_id *id
|
rtems_id *id
|
||||||
);
|
);
|
||||||
|
|
||||||
DIRECTIVE STATUS CODES:
|
DIRECTIVE STATUS CODES:
|
||||||
@ -314,8 +314,8 @@ CALLING SEQUENCE:
|
|||||||
.. code-block:: c
|
.. code-block:: c
|
||||||
|
|
||||||
rtems_status_code rtems_region_ident(
|
rtems_status_code rtems_region_ident(
|
||||||
rtems_name name,
|
rtems_name name,
|
||||||
rtems_id *id
|
rtems_id *id
|
||||||
);
|
);
|
||||||
|
|
||||||
DIRECTIVE STATUS CODES:
|
DIRECTIVE STATUS CODES:
|
||||||
@ -355,7 +355,7 @@ CALLING SEQUENCE:
|
|||||||
.. code-block:: c
|
.. code-block:: c
|
||||||
|
|
||||||
rtems_status_code rtems_region_delete(
|
rtems_status_code rtems_region_delete(
|
||||||
rtems_id id
|
rtems_id id
|
||||||
);
|
);
|
||||||
|
|
||||||
DIRECTIVE STATUS CODES:
|
DIRECTIVE STATUS CODES:
|
||||||
@ -396,9 +396,9 @@ CALLING SEQUENCE:
|
|||||||
.. code-block:: c
|
.. code-block:: c
|
||||||
|
|
||||||
rtems_status_code rtems_region_extend(
|
rtems_status_code rtems_region_extend(
|
||||||
rtems_id id,
|
rtems_id id,
|
||||||
void *starting_address,
|
void *starting_address,
|
||||||
intptr_t length
|
uintptr_t length
|
||||||
);
|
);
|
||||||
|
|
||||||
DIRECTIVE STATUS CODES:
|
DIRECTIVE STATUS CODES:
|
||||||
@ -439,11 +439,11 @@ CALLING SEQUENCE:
|
|||||||
.. code-block:: c
|
.. code-block:: c
|
||||||
|
|
||||||
rtems_status_code rtems_region_get_segment(
|
rtems_status_code rtems_region_get_segment(
|
||||||
rtems_id id,
|
rtems_id id,
|
||||||
intptr_t size,
|
uintptr_t size,
|
||||||
rtems_option option_set,
|
rtems_option option_set,
|
||||||
rtems_interval timeout,
|
rtems_interval timeout,
|
||||||
void **segment
|
void **segment
|
||||||
);
|
);
|
||||||
|
|
||||||
DIRECTIVE STATUS CODES:
|
DIRECTIVE STATUS CODES:
|
||||||
@ -522,8 +522,8 @@ CALLING SEQUENCE:
|
|||||||
.. code-block:: c
|
.. code-block:: c
|
||||||
|
|
||||||
rtems_status_code rtems_region_return_segment(
|
rtems_status_code rtems_region_return_segment(
|
||||||
rtems_id id,
|
rtems_id id,
|
||||||
void *segment
|
void *segment
|
||||||
);
|
);
|
||||||
|
|
||||||
DIRECTIVE STATUS CODES:
|
DIRECTIVE STATUS CODES:
|
||||||
@ -571,9 +571,9 @@ CALLING SEQUENCE:
|
|||||||
.. code-block:: c
|
.. code-block:: c
|
||||||
|
|
||||||
rtems_status_code rtems_region_get_segment_size(
|
rtems_status_code rtems_region_get_segment_size(
|
||||||
rtems_id id,
|
rtems_id id,
|
||||||
void *segment,
|
void *segment,
|
||||||
ssize_t *size
|
uintptr_t *size
|
||||||
);
|
);
|
||||||
|
|
||||||
DIRECTIVE STATUS CODES:
|
DIRECTIVE STATUS CODES:
|
||||||
@ -613,10 +613,10 @@ CALLING SEQUENCE:
|
|||||||
.. code-block:: c
|
.. code-block:: c
|
||||||
|
|
||||||
rtems_status_code rtems_region_resize_segment(
|
rtems_status_code rtems_region_resize_segment(
|
||||||
rtems_id id,
|
rtems_id id,
|
||||||
void *segment,
|
void *segment,
|
||||||
ssize_t size,
|
uintptr_t new_size,
|
||||||
ssize_t *old_size
|
uintptr_t *old_size
|
||||||
);
|
);
|
||||||
|
|
||||||
DIRECTIVE STATUS CODES:
|
DIRECTIVE STATUS CODES:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user