From dce487912d98835b8168e755b60514f5a8592b27 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Mon, 23 May 2016 13:37:59 +0200 Subject: score: Add Status_Control for all APIs Unify the status codes of the Classic and POSIX API to use the new enum Status_Control. This eliminates the Thread_Control::Wait::timeout_code field and the timeout parameter of _Thread_queue_Enqueue_critical() and _MPCI_Send_request_packet(). It gets rid of the status code translation tables and instead uses simple bit operations to get the status for a particular API. This enables translation of status code constants at compile time. Add _Thread_Wait_get_status() to avoid direct access of thread internal data structures. --- cpukit/rtems/src/msgqurgent.c | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) (limited to 'cpukit/rtems/src/msgqurgent.c') diff --git a/cpukit/rtems/src/msgqurgent.c b/cpukit/rtems/src/msgqurgent.c index add5f09bb2..6522d8fb1a 100644 --- a/cpukit/rtems/src/msgqurgent.c +++ b/cpukit/rtems/src/msgqurgent.c @@ -19,6 +19,7 @@ #endif #include +#include rtems_status_code rtems_message_queue_urgent( rtems_id id, @@ -26,9 +27,9 @@ rtems_status_code rtems_message_queue_urgent( size_t size ) { - Message_queue_Control *the_message_queue; - Thread_queue_Context queue_context; - CORE_message_queue_Status status; + Message_queue_Control *the_message_queue; + Thread_queue_Context queue_context; + Status_Control status; if ( buffer == NULL ) { return RTEMS_INVALID_ADDRESS; @@ -60,11 +61,5 @@ rtems_status_code rtems_message_queue_urgent( 0, /* no timeout */ &queue_context ); - - /* - * Since this API does not allow for blocking sends, we can directly - * return the returned status. - */ - - return _Message_queue_Translate_core_message_queue_return_code( status ); + return _Status_Get( status ); } -- cgit v1.2.3