summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/coresemseize.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2013-07-18 14:27:30 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2013-07-22 16:56:58 +0200
commite36f2b8c914b73bacfc89b997f4a59d5387303ce (patch)
tree19f4c9e363b353ea441c2459e5b697d18c4c8c5e /cpukit/score/src/coresemseize.c
parentscore: Add const qualifier (diff)
downloadrtems-e36f2b8c914b73bacfc89b997f4a59d5387303ce.tar.bz2
score: Avoid direct usage of _Thread_Executing
Pass the executing thread as a function parameter. Obtain the executing thread inside a thread dispatch critical section to avoid problems on SMP.
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 ) {