summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/coresemseize.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/coresemseize.c')
-rw-r--r--cpukit/score/src/coresemseize.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/cpukit/score/src/coresemseize.c b/cpukit/score/src/coresemseize.c
index 7ad23171bf..8da9ca3044 100644
--- a/cpukit/score/src/coresemseize.c
+++ b/cpukit/score/src/coresemseize.c
@@ -30,15 +30,14 @@
void _CORE_semaphore_Seize(
CORE_semaphore_Control *the_semaphore,
+ Thread_Control *executing,
Objects_Id id,
bool wait,
Watchdog_Interval timeout
)
{
- Thread_Control *executing;
ISR_Level level;
- executing = _Thread_Executing;
executing->Wait.return_code = CORE_SEMAPHORE_STATUS_SUCCESSFUL;
_ISR_Disable( level );
if ( the_semaphore->count != 0 ) {