From 4b04cb61552dbaa1a42a64e2f7b823708127e488 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Wed, 18 May 2016 08:03:05 +0200 Subject: score: Rename _ISR_Disable_without_giant() Rename _ISR_Disable_without_giant() into _ISR_Local_disable(). Rename _ISR_Enable_without_giant() into _ISR_Local_enable(). This is a preparation to remove the Giant lock. Update #2555. --- cpukit/score/src/threaddispatch.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cpukit/score/src/threaddispatch.c') diff --git a/cpukit/score/src/threaddispatch.c b/cpukit/score/src/threaddispatch.c index a1f4c54f93..4d840bfded 100644 --- a/cpukit/score/src/threaddispatch.c +++ b/cpukit/score/src/threaddispatch.c @@ -137,7 +137,7 @@ post_switch: cpu_self->thread_dispatch_disable_level = 0; _Profiling_Thread_dispatch_enable( cpu_self, 0 ); - _ISR_Enable_without_giant( level ); + _ISR_Local_enable( level ); _Thread_Run_post_switch_actions( executing ); } @@ -147,7 +147,7 @@ void _Thread_Dispatch( void ) ISR_Level level; Per_CPU_Control *cpu_self; - _ISR_Disable_without_giant( level ); + _ISR_Local_disable( level ); cpu_self = _Per_CPU_Get(); @@ -156,6 +156,6 @@ void _Thread_Dispatch( void ) cpu_self->thread_dispatch_disable_level = 1; _Thread_Do_dispatch( cpu_self, level ); } else { - _ISR_Enable_without_giant( level ); + _ISR_Local_enable( level ); } } -- cgit v1.2.3