summaryrefslogtreecommitdiffstats
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
parentReplace *_Get_interrupt_disable() with *_Get() (diff)
downloadrtems-bdb3b7fa2f57d3c70c9bb37d322a714544aa6a85.tar.bz2
score: _CORE_semaphore_Seize()
Delete unused parameter.
-rw-r--r--cpukit/posix/src/semaphorewaitsupp.c1
-rw-r--r--cpukit/rtems/src/semobtain.c1
-rw-r--r--cpukit/score/include/rtems/score/coresemimpl.h2
-rw-r--r--cpukit/score/src/mpci.c1
4 files changed, 0 insertions, 5 deletions
diff --git a/cpukit/posix/src/semaphorewaitsupp.c b/cpukit/posix/src/semaphorewaitsupp.c
index 84ebe3d9e2..02a2ae19e5 100644
--- a/cpukit/posix/src/semaphorewaitsupp.c
+++ b/cpukit/posix/src/semaphorewaitsupp.c
@@ -49,7 +49,6 @@ int _POSIX_Semaphore_Wait_support(
_CORE_semaphore_Seize(
&the_semaphore->Semaphore,
executing,
- the_semaphore->Object.id,
blocking,
timeout,
&lock_context
diff --git a/cpukit/rtems/src/semobtain.c b/cpukit/rtems/src/semobtain.c
index 8deb85747c..cd72c864d7 100644
--- a/cpukit/rtems/src/semobtain.c
+++ b/cpukit/rtems/src/semobtain.c
@@ -89,7 +89,6 @@ rtems_status_code rtems_semaphore_obtain(
_CORE_semaphore_Seize(
&the_semaphore->Core_control.semaphore,
executing,
- id,
wait,
timeout,
&lock_context
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