summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/sparc64
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/cpu/sparc64')
-rw-r--r--cpukit/score/cpu/sparc64/cpu.c4
-rw-r--r--cpukit/score/cpu/sparc64/include/rtems/score/cpu.h2
-rw-r--r--cpukit/score/cpu/sparc64/interrupt.S3
3 files changed, 4 insertions, 5 deletions
diff --git a/cpukit/score/cpu/sparc64/cpu.c b/cpukit/score/cpu/sparc64/cpu.c
index 7eb80988b1..f39882b53d 100644
--- a/cpukit/score/cpu/sparc64/cpu.c
+++ b/cpukit/score/cpu/sparc64/cpu.c
@@ -60,7 +60,7 @@ void _CPU_Initialize(void)
/*
* Since no tasks have been created yet and no interrupts have occurred,
* there is no way that the currently executing thread can have an
- * _ISR_Dispatch stack frame on its stack.
+ * interrupt stack frame on its stack.
*/
_CPU_ISR_Dispatch_disable = 0;
}
@@ -100,7 +100,7 @@ void _CPU_Context_Initialize(
/*
* Since THIS thread is being created, there is no way that THIS
- * thread can have an _ISR_Dispatch stack frame on its stack.
+ * thread can have an interrupt stack frame on its stack.
*/
the_context->isr_dispatch_disable = 0;
diff --git a/cpukit/score/cpu/sparc64/include/rtems/score/cpu.h b/cpukit/score/cpu/sparc64/include/rtems/score/cpu.h
index 0249023f94..c25226a975 100644
--- a/cpukit/score/cpu/sparc64/include/rtems/score/cpu.h
+++ b/cpukit/score/cpu/sparc64/include/rtems/score/cpu.h
@@ -487,7 +487,7 @@ extern Context_Control_fp _CPU_Null_fp_context;
/*
* This flag is context switched with each thread. It indicates
- * that THIS thread has an _ISR_Dispatch stack frame on its stack.
+ * that THIS thread has an interrupt stack frame on its stack.
* By using this flag, we can avoid nesting more interrupt dispatching
* attempts on a previously interrupted thread's stack.
*/
diff --git a/cpukit/score/cpu/sparc64/interrupt.S b/cpukit/score/cpu/sparc64/interrupt.S
index 6f8eb373f0..d249b39e8b 100644
--- a/cpukit/score/cpu/sparc64/interrupt.S
+++ b/cpukit/score/cpu/sparc64/interrupt.S
@@ -350,8 +350,7 @@ PUBLIC(_ISR_Handler)
/*
* Invoke interrupt dispatcher.
*/
-PUBLIC(_ISR_Dispatch)
- SYM(_ISR_Dispatch):
+
! Set ISR dispatch nesting prevention flag
mov 1, %o1
setx SYM(_CPU_ISR_Dispatch_disable), %o5, %o2