RTEMS CPU Kit with SuperCore
4.11.3
|
MP Support in Partition Manager. More...
#include <rtems/score/mpciimpl.h>
Go to the source code of this file.
Data Structures | |
struct | Partition_MP_Packet |
The following data structure defines the packet used to perform remote partition operations. More... | |
Enumerations | |
enum | Partition_MP_Remote_operations { PARTITION_MP_ANNOUNCE_CREATE = 0, PARTITION_MP_ANNOUNCE_DELETE = 1, PARTITION_MP_EXTRACT_PROXY = 2, PARTITION_MP_GET_BUFFER_REQUEST = 3, PARTITION_MP_GET_BUFFER_RESPONSE = 4, PARTITION_MP_RETURN_BUFFER_REQUEST = 5, PARTITION_MP_RETURN_BUFFER_RESPONSE = 6 } |
The following enumerated type defines the list of remote partition operations. | |
Functions | |
void | _Partition_MP_Send_process_packet (Partition_MP_Remote_operations operation, Objects_Id partition_id, rtems_name name, Objects_Id proxy_id) |
Partition_MP_Send_process_packet. More... | |
rtems_status_code | _Partition_MP_Send_request_packet (Partition_MP_Remote_operations operation, Objects_Id partition_id, void *buffer) |
Partition_MP_Send_request_packet. More... | |
void | _Partition_MP_Send_response_packet (Partition_MP_Remote_operations operation, Objects_Id partition_id, Thread_Control *the_thread) |
Partition_MP_Send_response_packet. More... | |
void | _Partition_MP_Process_packet (rtems_packet_prefix *the_packet_prefix) |
Partition_MP_Process_packet. More... | |
void | _Partition_MP_Send_extract_proxy (void *argument) |
Partition_MP_Send_extract_proxy. More... | |
Partition_MP_Packet * | _Partition_MP_Get_packet (void) |
Partition_MP_Get_packet. More... | |
MP Support in Partition Manager.
This include file contains all the constants and structures associated with the Multiprocessing Support in the Partition Manager.
Partition_MP_Packet* _Partition_MP_Get_packet | ( | void | ) |
Partition_MP_Get_packet.
This function is used to obtain a partition mp packet.
References _MPCI_Get_packet().
void _Partition_MP_Process_packet | ( | rtems_packet_prefix * | the_packet_prefix | ) |
Partition_MP_Process_packet.
This routine performs the actions specific to this package for the request from another node.
void _Partition_MP_Send_extract_proxy | ( | void * | argument | ) |
Partition_MP_Send_extract_proxy.
This routine is invoked when a task is deleted and it has a proxy which must be removed from a thread queue and the remote node must be informed of this.
References _Partition_MP_Send_process_packet().
void _Partition_MP_Send_process_packet | ( | Partition_MP_Remote_operations | operation, |
Objects_Id | partition_id, | ||
rtems_name | name, | ||
Objects_Id | proxy_id | ||
) |
Partition_MP_Send_process_packet.
Multiprocessing Support for the Partition Manager
This routine performs a remote procedure call so that a process operation can be performed on another node.
Referenced by _Partition_MP_Send_extract_proxy().
rtems_status_code _Partition_MP_Send_request_packet | ( | Partition_MP_Remote_operations | operation, |
Objects_Id | partition_id, | ||
void * | buffer | ||
) |
Partition_MP_Send_request_packet.
This routine performs a remote procedure call so that a directive operation can be initiated on another node.
void _Partition_MP_Send_response_packet | ( | Partition_MP_Remote_operations | operation, |
Objects_Id | partition_id, | ||
Thread_Control * | the_thread | ||
) |
Partition_MP_Send_response_packet.
This routine performs a remote procedure call so that a directive can be performed on another node.