summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2016-05-23 11:42:41 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-05-24 14:06:17 +0200
commit16dbcdcd7cf038a1cdeb887821604feafc9fa02f (patch)
tree45f016ec998e91eb906f5c21bdd11b7c65134b24
parentmpci: Add missing return statements (diff)
downloadrtems-16dbcdcd7cf038a1cdeb887821604feafc9fa02f.tar.bz2
score: _CORE_message_queue_Seize()
Delete unused parameter.
-rw-r--r--cpukit/posix/src/mqueuerecvsupp.c1
-rw-r--r--cpukit/rtems/src/msgqreceive.c1
-rw-r--r--cpukit/score/include/rtems/score/coremsgimpl.h3
-rw-r--r--cpukit/score/src/coremsgseize.c1
4 files changed, 0 insertions, 6 deletions
diff --git a/cpukit/posix/src/mqueuerecvsupp.c b/cpukit/posix/src/mqueuerecvsupp.c
index b1d830e3d2..1d7d527d49 100644
--- a/cpukit/posix/src/mqueuerecvsupp.c
+++ b/cpukit/posix/src/mqueuerecvsupp.c
@@ -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,
diff --git a/cpukit/rtems/src/msgqreceive.c b/cpukit/rtems/src/msgqreceive.c
index 75ef0d24ee..578b280fd2 100644
--- a/cpukit/rtems/src/msgqreceive.c
+++ b/cpukit/rtems/src/msgqreceive.c
@@ -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 ),
diff --git a/cpukit/score/include/rtems/score/coremsgimpl.h b/cpukit/score/include/rtems/score/coremsgimpl.h
index e3f0153fd9..34f214da6c 100644
--- a/cpukit/score/include/rtems/score/coremsgimpl.h
+++ b/cpukit/score/include/rtems/score/coremsgimpl.h
@@ -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,
diff --git a/cpukit/score/src/coremsgseize.c b/cpukit/score/src/coremsgseize.c
index 534dc0bea4..c9a2473e95 100644
--- a/cpukit/score/src/coremsgseize.c
+++ b/cpukit/score/src/coremsgseize.c
@@ -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,