summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/score/cpu/no_cpu/cpu_asm.c22
1 files changed, 17 insertions, 5 deletions
diff --git a/cpukit/score/cpu/no_cpu/cpu_asm.c b/cpukit/score/cpu/no_cpu/cpu_asm.c
index 26246a93c2..c0cf3b5127 100644
--- a/cpukit/score/cpu/no_cpu/cpu_asm.c
+++ b/cpukit/score/cpu/no_cpu/cpu_asm.c
@@ -136,17 +136,29 @@ void _ISR_Handler()
*
* (*_ISR_Vector_table[ vector ])( vector );
*
- * if ( --__ISR_Nest_level == 0 ) {
- * if ( _Context_Switch_necessary || _ISR_Signals_to_thread_executing )
- * call _Thread_Dispatch() or prepare to return to _ISR_Dispatch
+ * --_ISR_Nest_level;
+ *
+ * if ( _ISR_Nest_level )
+ * goto the label "exit interrupt (simple case)"
+ *
* #if ( CPU_HAS_SOFTWARE_INTERRUPT_STACK == TRUE )
* restore stack
* #endif
- * }
+ *
+ * if ( !_Context_Switch_necessary )
+ * goto the label "exit interrupt (simple case)"
+ *
+ * if ( !_ISR_Signals_to_thread_executing )
+ * goto the label "exit interrupt (simple case)"
+ *
+ * call _Thread_Dispatch() or prepare to return to _ISR_Dispatch
*
* prepare to get out of interrupt
- * return from interrupt
+ * return from interrupt (maybe to _ISR_Dispatch)
*
+ * LABEL "exit interrupt (simple case):
+ * prepare to get out of interrupt
+ * return from interrupt
*/
}