forked from Imagelibrary/rtems
More file movement
This commit is contained in:
@@ -132,7 +132,8 @@ EXTERN MPCI_Packet_processor _MPCI_Packet_processors[MP_PACKET_CLASSES_LAST+1];
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
void _MPCI_Handler_initialization(
|
void _MPCI_Handler_initialization(
|
||||||
MPCI_Control *users_mpci_table
|
MPCI_Control *users_mpci_table,
|
||||||
|
unsigned32 timeout_status
|
||||||
);
|
);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|||||||
@@ -132,7 +132,8 @@ EXTERN MPCI_Packet_processor _MPCI_Packet_processors[MP_PACKET_CLASSES_LAST+1];
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
void _MPCI_Handler_initialization(
|
void _MPCI_Handler_initialization(
|
||||||
MPCI_Control *users_mpci_table
|
MPCI_Control *users_mpci_table,
|
||||||
|
unsigned32 timeout_status
|
||||||
);
|
);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|||||||
@@ -27,8 +27,6 @@
|
|||||||
|
|
||||||
#include <rtems/core/coresem.h>
|
#include <rtems/core/coresem.h>
|
||||||
|
|
||||||
#include <rtems/rtems/status.h> /* XXX for TIMEOUT */
|
|
||||||
|
|
||||||
/*PAGE
|
/*PAGE
|
||||||
*
|
*
|
||||||
* _MPCI_Handler_initialization
|
* _MPCI_Handler_initialization
|
||||||
@@ -37,7 +35,8 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
void _MPCI_Handler_initialization(
|
void _MPCI_Handler_initialization(
|
||||||
MPCI_Control *users_mpci_table
|
MPCI_Control *users_mpci_table,
|
||||||
|
unsigned32 timeout_status
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
CORE_semaphore_Attributes attributes;
|
CORE_semaphore_Attributes attributes;
|
||||||
@@ -67,7 +66,7 @@ void _MPCI_Handler_initialization(
|
|||||||
THREAD_QUEUE_DISCIPLINE_FIFO,
|
THREAD_QUEUE_DISCIPLINE_FIFO,
|
||||||
STATES_WAITING_FOR_RPC_REPLY,
|
STATES_WAITING_FOR_RPC_REPLY,
|
||||||
NULL,
|
NULL,
|
||||||
RTEMS_TIMEOUT /* XXX */
|
timeout_status
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -16,7 +16,6 @@
|
|||||||
#include <rtems/system.h>
|
#include <rtems/system.h>
|
||||||
#include <rtems/core/context.h>
|
#include <rtems/core/context.h>
|
||||||
#include <rtems/core/interr.h>
|
#include <rtems/core/interr.h>
|
||||||
#include <rtems/core/intthrd.h>
|
|
||||||
#include <rtems/core/isr.h>
|
#include <rtems/core/isr.h>
|
||||||
#include <rtems/core/object.h>
|
#include <rtems/core/object.h>
|
||||||
#include <rtems/core/priority.h>
|
#include <rtems/core/priority.h>
|
||||||
|
|||||||
@@ -22,8 +22,6 @@
|
|||||||
#include <rtems/core/threadq.h>
|
#include <rtems/core/threadq.h>
|
||||||
#include <rtems/core/tqdata.h>
|
#include <rtems/core/tqdata.h>
|
||||||
|
|
||||||
#include <rtems/rtems/status.h>
|
|
||||||
|
|
||||||
/*PAGE
|
/*PAGE
|
||||||
*
|
*
|
||||||
* _Thread_queue_Initialize
|
* _Thread_queue_Initialize
|
||||||
|
|||||||
@@ -132,7 +132,8 @@ EXTERN MPCI_Packet_processor _MPCI_Packet_processors[MP_PACKET_CLASSES_LAST+1];
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
void _MPCI_Handler_initialization(
|
void _MPCI_Handler_initialization(
|
||||||
MPCI_Control *users_mpci_table
|
MPCI_Control *users_mpci_table,
|
||||||
|
unsigned32 timeout_status
|
||||||
);
|
);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|||||||
@@ -27,8 +27,6 @@
|
|||||||
|
|
||||||
#include <rtems/core/coresem.h>
|
#include <rtems/core/coresem.h>
|
||||||
|
|
||||||
#include <rtems/rtems/status.h> /* XXX for TIMEOUT */
|
|
||||||
|
|
||||||
/*PAGE
|
/*PAGE
|
||||||
*
|
*
|
||||||
* _MPCI_Handler_initialization
|
* _MPCI_Handler_initialization
|
||||||
@@ -37,7 +35,8 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
void _MPCI_Handler_initialization(
|
void _MPCI_Handler_initialization(
|
||||||
MPCI_Control *users_mpci_table
|
MPCI_Control *users_mpci_table,
|
||||||
|
unsigned32 timeout_status
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
CORE_semaphore_Attributes attributes;
|
CORE_semaphore_Attributes attributes;
|
||||||
@@ -67,7 +66,7 @@ void _MPCI_Handler_initialization(
|
|||||||
THREAD_QUEUE_DISCIPLINE_FIFO,
|
THREAD_QUEUE_DISCIPLINE_FIFO,
|
||||||
STATES_WAITING_FOR_RPC_REPLY,
|
STATES_WAITING_FOR_RPC_REPLY,
|
||||||
NULL,
|
NULL,
|
||||||
RTEMS_TIMEOUT /* XXX */
|
timeout_status
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -16,7 +16,6 @@
|
|||||||
#include <rtems/system.h>
|
#include <rtems/system.h>
|
||||||
#include <rtems/core/context.h>
|
#include <rtems/core/context.h>
|
||||||
#include <rtems/core/interr.h>
|
#include <rtems/core/interr.h>
|
||||||
#include <rtems/core/intthrd.h>
|
|
||||||
#include <rtems/core/isr.h>
|
#include <rtems/core/isr.h>
|
||||||
#include <rtems/core/object.h>
|
#include <rtems/core/object.h>
|
||||||
#include <rtems/core/priority.h>
|
#include <rtems/core/priority.h>
|
||||||
|
|||||||
@@ -22,8 +22,6 @@
|
|||||||
#include <rtems/core/threadq.h>
|
#include <rtems/core/threadq.h>
|
||||||
#include <rtems/core/tqdata.h>
|
#include <rtems/core/tqdata.h>
|
||||||
|
|
||||||
#include <rtems/rtems/status.h>
|
|
||||||
|
|
||||||
/*PAGE
|
/*PAGE
|
||||||
*
|
*
|
||||||
* _Thread_queue_Initialize
|
* _Thread_queue_Initialize
|
||||||
|
|||||||
Reference in New Issue
Block a user