summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/debugisthreaddispatchingallowed.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/debugisthreaddispatchingallowed.c')
-rw-r--r--cpukit/score/src/debugisthreaddispatchingallowed.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/score/src/debugisthreaddispatchingallowed.c b/cpukit/score/src/debugisthreaddispatchingallowed.c
index 2f0c7f07e2..0f1580c1fd 100644
--- a/cpukit/score/src/debugisthreaddispatchingallowed.c
+++ b/cpukit/score/src/debugisthreaddispatchingallowed.c
@@ -24,11 +24,11 @@
{
bool dispatch_allowed;
ISR_Level level;
- Per_CPU_Control *per_cpu;
+ Per_CPU_Control *cpu_self;
_ISR_Disable_without_giant( level );
- per_cpu = _Per_CPU_Get_snapshot();
- dispatch_allowed = per_cpu->thread_dispatch_disable_level == 0;
+ cpu_self = _Per_CPU_Get_snapshot();
+ dispatch_allowed = cpu_self->thread_dispatch_disable_level == 0;
_ISR_Enable_without_giant( level );
return dispatch_allowed;