From 247131632173158cb2668d4e5c7464951b668067 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Wed, 18 May 2016 08:06:54 +0200 Subject: score: Rename _ISR_Disable() and _ISR_Enable() Rename _ISR_Disable() into _ISR_Local_disable(). Rename _ISR_Enable() into _ISR_Local_enable(). Remove _Debug_Is_owner_of_giant(). This is a preparation to remove the Giant lock. Update #2555. --- cpukit/score/cpu/or1k/cpu.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cpukit/score/cpu/or1k') diff --git a/cpukit/score/cpu/or1k/cpu.c b/cpukit/score/cpu/or1k/cpu.c index 3cf6f6ba81..fe933f0cbb 100644 --- a/cpukit/score/cpu/or1k/cpu.c +++ b/cpukit/score/cpu/or1k/cpu.c @@ -88,7 +88,7 @@ void _CPU_ISR_install_vector( ISR_Level level; - _ISR_Disable( level ); + _ISR_Local_disable( level ); current_handler = table [vector]; @@ -102,7 +102,7 @@ void _CPU_ISR_install_vector( table [vector] = new_handler; } - _ISR_Enable( level ); + _ISR_Local_enable( level ); } void _CPU_Install_interrupt_stack( void ) -- cgit v1.2.3