summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2000-07-03 18:43:44 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2000-07-03 18:43:44 +0000
commit0f4bfda9923a9a8bc223a4a71bd2c7dc8d6d0118 (patch)
tree28428f2ae707f06d5f74d537489c23d5bd7a3d60
parentPatches from Eric Valette to address librdbg issues on SunRPC upgrade (diff)
downloadrtems-0f4bfda9923a9a8bc223a4a71bd2c7dc8d6d0118.tar.bz2
Interrupt stack is allocated in _ISR_Handler_initialization not
_Interrupt_Manager_initialization.
-rw-r--r--c/src/exec/score/cpu/a29k/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
8 files changed, 8 insertions, 8 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/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 2a502d0745..904475790e 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,