32 #ifndef _RTEMS_RTEMS_DPMEM_H 33 #define _RTEMS_RTEMS_DPMEM_H The following defines the Object Control Block used to manage each object local to this node...
Definition: object.h:232
Objects_Id rtems_id
Used to manage and manipulate RTEMS object identifiers.
Definition: types.h:80
void * external_base
This field is the base external address of the port.
Definition: dpmem.h:63
The following structure defines the port control block.
Definition: dpmem.h:57
rtems_status_code rtems_port_create(rtems_name name, void *internal_start, void *external_start, uint32_t length, rtems_id *id)
Creates a port into a dual-ported memory area.
Definition: dpmemcreate.c:28
rtems_status_code
Classic API Status.
Definition: status.h:46
uint32_t rtems_name
Classic API object name type.
Definition: types.h:74
uint32_t length
This field is the length of dual-ported area of the port.
Definition: dpmem.h:65
rtems_status_code rtems_port_external_to_internal(rtems_id id, void *external, void **internal)
RTEMS Port External to Internal.
Definition: dpmemexternal2internal.c:28
void * internal_base
This field is the base internal address of the port.
Definition: dpmem.h:61
Objects_Control Object
This field is the object management portion of a Port instance.
Definition: dpmem.h:59
rtems_status_code rtems_port_ident(rtems_name name, rtems_id *id)
RTEMS Port Name to Id.
Definition: dpmemident.c:28
rtems_status_code rtems_port_delete(rtems_id id)
RTEMS Delete Port.
Definition: dpmemdelete.c:28
rtems_status_code rtems_port_internal_to_external(rtems_id id, void *internal, void **external)
RTEMS Port Internal to External.
Definition: dpmeminternal2external.c:28