summaryrefslogtreecommitdiffstats
path: root/cpukit/score
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 /cpukit/score
parentmpci: Add missing return statements (diff)
downloadrtems-16dbcdcd7cf038a1cdeb887821604feafc9fa02f.tar.bz2
score: _CORE_message_queue_Seize()
Delete unused parameter.
Diffstat (limited to 'cpukit/score')
-rw-r--r--cpukit/score/include/rtems/score/coremsgimpl.h3
-rw-r--r--cpukit/score/src/coremsgseize.c1
2 files changed, 0 insertions, 4 deletions
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,