summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/threadq.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/threadq.c')
-rw-r--r--cpukit/score/src/threadq.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/score/src/threadq.c b/cpukit/score/src/threadq.c
index d427431adb..b12e3deb49 100644
--- a/cpukit/score/src/threadq.c
+++ b/cpukit/score/src/threadq.c
@@ -76,7 +76,7 @@ void _Thread_queue_Do_acquire_critical(
lock_context
);
#if defined(RTEMS_DEBUG)
- the_thread_queue->owner = _SMP_Get_current_processor();
+ the_thread_queue->owner = _SMP_lock_Who_am_I();
#endif
}
@@ -92,7 +92,7 @@ void _Thread_queue_Acquire(
&queue_context->Lock_context.Lock_context
);
#if defined(RTEMS_DEBUG)
- the_thread_queue->owner = _SMP_Get_current_processor();
+ the_thread_queue->owner = _SMP_lock_Who_am_I();
#endif
}