summaryrefslogtreecommitdiffstats
path: root/cpukit/score
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2016-05-20 15:52:27 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-05-20 16:17:00 +0200
commitbdb3b7fa2f57d3c70c9bb37d322a714544aa6a85 (patch)
tree29f60446402e5e2267717e436e7efdb52378e3bc /cpukit/score
parentReplace *_Get_interrupt_disable() with *_Get() (diff)
downloadrtems-bdb3b7fa2f57d3c70c9bb37d322a714544aa6a85.tar.bz2
score: _CORE_semaphore_Seize()
Delete unused parameter.
Diffstat (limited to 'cpukit/score')
-rw-r--r--cpukit/score/include/rtems/score/coresemimpl.h2
-rw-r--r--cpukit/score/src/mpci.c1
2 files changed, 0 insertions, 3 deletions
diff --git a/cpukit/score/include/rtems/score/coresemimpl.h b/cpukit/score/include/rtems/score/coresemimpl.h
index bc174066ab..a06fcb5f2b 100644
--- a/cpukit/score/include/rtems/score/coresemimpl.h
+++ b/cpukit/score/include/rtems/score/coresemimpl.h
@@ -256,7 +256,6 @@ RTEMS_INLINE_ROUTINE uint32_t _CORE_semaphore_Get_count(
*
* @param[in] the_semaphore is the semaphore to obtain
* @param[in,out] executing The currently executing thread.
- * @param[in] id is the Id of the owning API level Semaphore object
* @param[in] wait is true if the thread is willing to wait
* @param[in] timeout is the maximum number of ticks to block
* @param[in] lock_context is a temporary variable used to contain the ISR
@@ -267,7 +266,6 @@ RTEMS_INLINE_ROUTINE uint32_t _CORE_semaphore_Get_count(
RTEMS_INLINE_ROUTINE void _CORE_semaphore_Seize(
CORE_semaphore_Control *the_semaphore,
Thread_Control *executing,
- Objects_Id id,
bool wait,
Watchdog_Interval timeout,
ISR_lock_Context *lock_context
diff --git a/cpukit/score/src/mpci.c b/cpukit/score/src/mpci.c
index 26adc9678d..d5ba1e5b4e 100644
--- a/cpukit/score/src/mpci.c
+++ b/cpukit/score/src/mpci.c
@@ -336,7 +336,6 @@ void _MPCI_Receive_server(
_CORE_semaphore_Seize(
&_MPCI_Semaphore,
executing,
- 0,
true,
WATCHDOG_NO_TIMEOUT,
&lock_context