forked from Imagelibrary/rtems
score: _CORE_message_queue_Seize()
Delete unused parameter.
This commit is contained in:
@@ -99,7 +99,6 @@ ssize_t _POSIX_Message_queue_Receive_support(
|
||||
_CORE_message_queue_Seize(
|
||||
&the_mq->Message_queue,
|
||||
executing,
|
||||
mqdes,
|
||||
msg_ptr,
|
||||
&length_out,
|
||||
do_wait,
|
||||
|
||||
@@ -66,7 +66,6 @@ rtems_status_code rtems_message_queue_receive(
|
||||
_CORE_message_queue_Seize(
|
||||
&the_message_queue->message_queue,
|
||||
executing,
|
||||
the_message_queue->Object.id,
|
||||
buffer,
|
||||
size,
|
||||
!_Options_Is_no_wait( option_set ),
|
||||
|
||||
@@ -394,8 +394,6 @@ CORE_message_queue_Status _CORE_message_queue_Do_submit(
|
||||
* otherwise an error will be given to the thread if no messages are available.
|
||||
*
|
||||
* @param[in] the_message_queue points to the message queue
|
||||
* @param[in] id is the RTEMS object Id associated with this message queue.
|
||||
* It is used when unblocking a remote thread.
|
||||
* @param[in] buffer is the starting address of the message buffer to
|
||||
* to be filled in with a message
|
||||
* @param[in] size_p is a pointer to the size of the @a buffer and
|
||||
@@ -419,7 +417,6 @@ CORE_message_queue_Status _CORE_message_queue_Do_submit(
|
||||
void _CORE_message_queue_Seize(
|
||||
CORE_message_queue_Control *the_message_queue,
|
||||
Thread_Control *executing,
|
||||
Objects_Id id,
|
||||
void *buffer,
|
||||
size_t *size_p,
|
||||
bool wait,
|
||||
|
||||
@@ -29,7 +29,6 @@
|
||||
void _CORE_message_queue_Seize(
|
||||
CORE_message_queue_Control *the_message_queue,
|
||||
Thread_Control *executing,
|
||||
Objects_Id id,
|
||||
void *buffer,
|
||||
size_t *size_p,
|
||||
bool wait,
|
||||
|
||||
Reference in New Issue
Block a user