summaryrefslogtreecommitdiffstats
path: root/c/src/exec
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2000-07-03 18:44:12 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2000-07-03 18:44:12 +0000
commit8bc62aeb5dbdeddcb269ad64d87c655ecddc2932 (patch)
tree53fa8692a5fc4c448d01eb9306be6bd1e2f6fcfb /c/src/exec
parentAdded blocked_count field to allow for optimizations. (diff)
downloadrtems-8bc62aeb5dbdeddcb269ad64d87c655ecddc2932.tar.bz2
Interrupt stack is allocated in _ISR_Handler_initialization not
_Interrupt_Manager_initialization.
Diffstat (limited to 'c/src/exec')
-rw-r--r--c/src/exec/score/cpu/a29k/rtems/score/cpu.h2
-rw-r--r--c/src/exec/score/cpu/h8300/rtems/score/cpu.h2
-rw-r--r--c/src/exec/score/cpu/mips/rtems/score/cpu.h2
-rw-r--r--c/src/exec/score/cpu/mips64orion/rtems/score/cpu.h2
-rw-r--r--c/src/exec/score/cpu/no_cpu/rtems/score/cpu.h2
-rw-r--r--c/src/exec/score/cpu/powerpc/new_exception_processing/cpu.h2
-rw-r--r--c/src/exec/score/cpu/powerpc/old_exception_processing/cpu.h2
-rw-r--r--c/src/exec/score/cpu/sh/rtems/score/cpu.h2
-rw-r--r--c/src/exec/score/cpu/sparc/rtems/score/cpu.h2
-rw-r--r--c/src/exec/score/cpu/unix/rtems/score/cpu.h2
10 files changed, 10 insertions, 10 deletions
diff --git a/c/src/exec/score/cpu/a29k/rtems/score/cpu.h b/c/src/exec/score/cpu/a29k/rtems/score/cpu.h
index c65c628979..93528e5d7c 100644
--- a/c/src/exec/score/cpu/a29k/rtems/score/cpu.h
+++ b/c/src/exec/score/cpu/a29k/rtems/score/cpu.h
@@ -106,7 +106,7 @@ extern void a29k_sigdfl_sup(void);
/*
* Does RTEMS manage a dedicated interrupt stack in software?
*
- * If TRUE, then a stack is allocated in _Interrupt_Manager_initialization.
+ * If TRUE, then a stack is allocated in _ISR_Handler_initialization.
* If FALSE, nothing is done.
*
* If the CPU supports a dedicated interrupt stack in hardware,
diff --git a/c/src/exec/score/cpu/h8300/rtems/score/cpu.h b/c/src/exec/score/cpu/h8300/rtems/score/cpu.h
index 667755fdfd..7d85c560bf 100644
--- a/c/src/exec/score/cpu/h8300/rtems/score/cpu.h
+++ b/c/src/exec/score/cpu/h8300/rtems/score/cpu.h
@@ -77,7 +77,7 @@ extern "C" {
/*
* Does RTEMS manage a dedicated interrupt stack in software?
*
- * If TRUE, then a stack is allocated in _Interrupt_Manager_initialization.
+ * If TRUE, then a stack is allocated in _ISR_Handler_initialization.
* If FALSE, nothing is done.
*
* If the CPU supports a dedicated interrupt stack in hardware,
diff --git a/c/src/exec/score/cpu/mips/rtems/score/cpu.h b/c/src/exec/score/cpu/mips/rtems/score/cpu.h
index 96eb34292a..fc07485190 100644
--- a/c/src/exec/score/cpu/mips/rtems/score/cpu.h
+++ b/c/src/exec/score/cpu/mips/rtems/score/cpu.h
@@ -93,7 +93,7 @@ extern void mips_fatal_error ( int error );
/*
* Does RTEMS manage a dedicated interrupt stack in software?
*
- * If TRUE, then a stack is allocated in _Interrupt_Manager_initialization.
+ * If TRUE, then a stack is allocated in _ISR_Handler_initialization.
* If FALSE, nothing is done.
*
* If the CPU supports a dedicated interrupt stack in hardware,
diff --git a/c/src/exec/score/cpu/mips64orion/rtems/score/cpu.h b/c/src/exec/score/cpu/mips64orion/rtems/score/cpu.h
index 96eb34292a..fc07485190 100644
--- a/c/src/exec/score/cpu/mips64orion/rtems/score/cpu.h
+++ b/c/src/exec/score/cpu/mips64orion/rtems/score/cpu.h
@@ -93,7 +93,7 @@ extern void mips_fatal_error ( int error );
/*
* Does RTEMS manage a dedicated interrupt stack in software?
*
- * If TRUE, then a stack is allocated in _Interrupt_Manager_initialization.
+ * If TRUE, then a stack is allocated in _ISR_Handler_initialization.
* If FALSE, nothing is done.
*
* If the CPU supports a dedicated interrupt stack in hardware,
diff --git a/c/src/exec/score/cpu/no_cpu/rtems/score/cpu.h b/c/src/exec/score/cpu/no_cpu/rtems/score/cpu.h
index b2eeaa84ce..4e05963e04 100644
--- a/c/src/exec/score/cpu/no_cpu/rtems/score/cpu.h
+++ b/c/src/exec/score/cpu/no_cpu/rtems/score/cpu.h
@@ -77,7 +77,7 @@ extern "C" {
/*
* Does RTEMS manage a dedicated interrupt stack in software?
*
- * If TRUE, then a stack is allocated in _Interrupt_Manager_initialization.
+ * If TRUE, then a stack is allocated in _ISR_Handler_initialization.
* If FALSE, nothing is done.
*
* If the CPU supports a dedicated interrupt stack in hardware,
diff --git a/c/src/exec/score/cpu/powerpc/new_exception_processing/cpu.h b/c/src/exec/score/cpu/powerpc/new_exception_processing/cpu.h
index bf2204fd3d..c6e6c3a23a 100644
--- a/c/src/exec/score/cpu/powerpc/new_exception_processing/cpu.h
+++ b/c/src/exec/score/cpu/powerpc/new_exception_processing/cpu.h
@@ -89,7 +89,7 @@ extern "C" {
/*
* Does RTEMS manage a dedicated interrupt stack in software?
*
- * If TRUE, then a stack is allocated in _Interrupt_Manager_initialization.
+ * If TRUE, then a stack is allocated in _ISR_Handler_initialization.
* If FALSE, nothing is done.
*
* If the CPU supports a dedicated interrupt stack in hardware,
diff --git a/c/src/exec/score/cpu/powerpc/old_exception_processing/cpu.h b/c/src/exec/score/cpu/powerpc/old_exception_processing/cpu.h
index 30dd6dc092..f4bb158a00 100644
--- a/c/src/exec/score/cpu/powerpc/old_exception_processing/cpu.h
+++ b/c/src/exec/score/cpu/powerpc/old_exception_processing/cpu.h
@@ -90,7 +90,7 @@ typedef void ( *ppc_isr_entry )( int, struct CPU_Interrupt_frame * );
/*
* Does RTEMS manage a dedicated interrupt stack in software?
*
- * If TRUE, then a stack is allocated in _Interrupt_Manager_initialization.
+ * If TRUE, then a stack is allocated in _ISR_Handler_initialization.
* If FALSE, nothing is done.
*
* If the CPU supports a dedicated interrupt stack in hardware,
diff --git a/c/src/exec/score/cpu/sh/rtems/score/cpu.h b/c/src/exec/score/cpu/sh/rtems/score/cpu.h
index dedd11c055..43ccf35a73 100644
--- a/c/src/exec/score/cpu/sh/rtems/score/cpu.h
+++ b/c/src/exec/score/cpu/sh/rtems/score/cpu.h
@@ -79,7 +79,7 @@ extern "C" {
/*
* Does RTEMS manage a dedicated interrupt stack in software?
*
- * If TRUE, then a stack is allocated in _Interrupt_Manager_initialization.
+ * If TRUE, then a stack is allocated in _ISR_Handler_initialization.
* If FALSE, nothing is done.
*
* If the CPU supports a dedicated interrupt stack in hardware,
diff --git a/c/src/exec/score/cpu/sparc/rtems/score/cpu.h b/c/src/exec/score/cpu/sparc/rtems/score/cpu.h
index fe482d4a7c..ab81a85e5f 100644
--- a/c/src/exec/score/cpu/sparc/rtems/score/cpu.h
+++ b/c/src/exec/score/cpu/sparc/rtems/score/cpu.h
@@ -63,7 +63,7 @@ extern "C" {
/*
* Does the executive manage a dedicated interrupt stack in software?
*
- * If TRUE, then a stack is allocated in _Interrupt_Manager_initialization.
+ * If TRUE, then a stack is allocated in _ISR_Handler_initialization.
* If FALSE, nothing is done.
*
* The SPARC does not have a dedicated HW interrupt stack and one has
diff --git a/c/src/exec/score/cpu/unix/rtems/score/cpu.h b/c/src/exec/score/cpu/unix/rtems/score/cpu.h
index 698d900515..d7019c3eec 100644
--- a/c/src/exec/score/cpu/unix/rtems/score/cpu.h
+++ b/c/src/exec/score/cpu/unix/rtems/score/cpu.h
@@ -81,7 +81,7 @@ extern "C" {
/*
* Does RTEMS manage a dedicated interrupt stack in software?
*
- * If TRUE, then a stack is allocated in _Interrupt_Manager_initialization.
+ * If TRUE, then a stack is allocated in _ISR_Handler_initialization.
* If FALSE, nothing is done.
*
* If the CPU supports a dedicated interrupt stack in hardware,