mpci: Make _*_MP_Send_response_packet() static

This commit is contained in:
Sebastian Huber
2016-05-02 06:17:07 +02:00
parent b1b8bd25b1
commit c506158c1a
15 changed files with 7 additions and 101 deletions

View File

@@ -85,19 +85,6 @@ rtems_status_code _Barrier_MP_Send_request_packet (
rtems_interval timeout
);
/**
* @brief _Barrier_MP_Send_response_packet
*
* This routine performs a remote procedure call so that a
* directive can be performed on another node.
*/
void _Barrier_MP_Send_response_packet (
Barrier_MP_Remote_operations operation,
Objects_Id barrier_id,
Thread_Control *the_thread
);
/**
* @brief _Barrier_MP_Process_packet
*

View File

@@ -82,17 +82,6 @@ rtems_status_code _Event_MP_Send_request_packet (
rtems_event_set event_in
);
/**
* @brief Event MP Send Packet Response
*
* This routine performs a remote procedure call so that a
* directive can be performed on another node.
*/
void _Event_MP_Send_response_packet (
Event_MP_Remote_operations operation,
Thread_Control *the_thread
);
/**
* @brief Event MP Packet Process
*

View File

@@ -121,18 +121,6 @@ rtems_status_code _Message_queue_MP_Send_request_packet (
rtems_interval timeout
);
/**
* @brief _Message_queue_MP_Send_response_packet
*
* This routine performs a remote procedure call so that a
* directive can be performed on another node.
*/
void _Message_queue_MP_Send_response_packet (
Message_queue_MP_Remote_operations operation,
Objects_Id message_queue_id,
Thread_Control *the_thread
);
/**
*
* @brief _Message_queue_MP_Process_packet

View File

@@ -91,18 +91,6 @@ rtems_status_code _Partition_MP_Send_request_packet (
void *buffer
);
/**
* @brief Partition_MP_Send_response_packet
*
* This routine performs a remote procedure call so that a
* directive can be performed on another node.
*/
void _Partition_MP_Send_response_packet (
Partition_MP_Remote_operations operation,
Objects_Id partition_id,
Thread_Control *the_thread
);
/**
*
* @brief Partition_MP_Process_packet

View File

@@ -97,18 +97,6 @@ rtems_status_code _Region_MP_Send_request_packet (
rtems_interval timeout
);
/**
* @brief Region MP Send Response Packet
*
* This routine performs a remote procedure call so that a
* directive can be performed on another node.
*/
void _Region_MP_Send_response_packet (
Region_MP_Remote_operations operation,
Objects_Id region_id,
Thread_Control *the_thread
);
/**
* @brief Region MP Process Packet
*

View File

@@ -91,18 +91,6 @@ rtems_status_code _Semaphore_MP_Send_request_packet (
rtems_interval timeout
);
/**
* @brief Semaphore MP Send Response Packet
*
* This routine performs a remote procedure call so that a
* directive can be performed on another node.
*/
void _Semaphore_MP_Send_response_packet (
Semaphore_MP_Remote_operations operation,
Objects_Id semaphore_id,
Thread_Control *the_thread
);
/**
* @brief Semaphore MP Process Packet
*

View File

@@ -79,17 +79,6 @@ rtems_status_code _Signal_MP_Send_request_packet (
rtems_signal_set signal_in
);
/**
* @brief Signal MP Send Response Packet
*
* This routine performs a remote procedure call so that a
* directive can be performed on another node.
*/
void _Signal_MP_Send_response_packet (
Signal_MP_Remote_operations operation,
Thread_Control *the_thread
);
/**
* @brief Signal MP Process Packet
*

View File

@@ -93,17 +93,6 @@ rtems_status_code _RTEMS_tasks_MP_Send_request_packet (
rtems_task_priority the_priority
);
/**
* @brief _RTEMS_tasks_MP_Send_response_packet
*
* This routine performs a remote procedure call so that a
* directive can be performed on another node.
*/
void _RTEMS_tasks_MP_Send_response_packet (
RTEMS_tasks_MP_Remote_operations operation,
Thread_Control *the_thread
);
/**
* @brief _RTEMS_tasks_MP_Process_packet
*

View File

@@ -76,7 +76,7 @@ rtems_status_code _Event_MP_Send_request_packet (
return RTEMS_SUCCESSFUL;
}
void _Event_MP_Send_response_packet (
static void _Event_MP_Send_response_packet (
Event_MP_Remote_operations operation,
Thread_Control *the_thread
)

View File

@@ -199,7 +199,7 @@ rtems_status_code _Message_queue_MP_Send_request_packet (
*
*/
void _Message_queue_MP_Send_response_packet (
static void _Message_queue_MP_Send_response_packet (
Message_queue_MP_Remote_operations operation,
Objects_Id message_queue_id,
Thread_Control *the_thread

View File

@@ -130,7 +130,7 @@ rtems_status_code _Partition_MP_Send_request_packet (
*
*/
void _Partition_MP_Send_response_packet (
static void _Partition_MP_Send_response_packet (
Partition_MP_Remote_operations operation,
Objects_Id partition_id,
Thread_Control *the_thread

View File

@@ -122,7 +122,7 @@ rtems_status_code _Region_MP_Send_request_packet (
return RTEMS_INTERNAL_ERROR;
}
void _Region_MP_Send_response_packet (
static void _Region_MP_Send_response_packet (
Region_MP_Remote_operations operation,
Objects_Id region_id,
Thread_Control *the_thread

View File

@@ -115,7 +115,7 @@ rtems_status_code _Semaphore_MP_Send_request_packet (
return RTEMS_SUCCESSFUL;
}
void _Semaphore_MP_Send_response_packet (
static void _Semaphore_MP_Send_response_packet (
Semaphore_MP_Remote_operations operation,
Objects_Id semaphore_id,
Thread_Control *the_thread

View File

@@ -76,7 +76,7 @@ rtems_status_code _Signal_MP_Send_request_packet (
return RTEMS_INTERNAL_ERROR;
}
void _Signal_MP_Send_response_packet (
static void _Signal_MP_Send_response_packet (
Signal_MP_Remote_operations operation,
Thread_Control *the_thread
)

View File

@@ -123,7 +123,7 @@ rtems_status_code _RTEMS_tasks_MP_Send_request_packet (
*
*/
void _RTEMS_tasks_MP_Send_response_packet (
static void _RTEMS_tasks_MP_Send_response_packet (
RTEMS_tasks_MP_Remote_operations operation,
Thread_Control *the_thread
)