summaryrefslogtreecommitdiffstats
path: root/c/src/exec/score/cpu/unix/cpu.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2001-01-25 18:45:59 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2001-01-25 18:45:59 +0000
commitc54152a26c3226356a706515b4e4d231e02c47e2 (patch)
tree6666753fa60da395326652499e06ddb909cd8914 /c/src/exec/score/cpu/unix/cpu.c
parent2001-01-25 Fernando Ruiz <fernando.ruiz@ctv.es> (diff)
downloadrtems-c54152a26c3226356a706515b4e4d231e02c47e2.tar.bz2
2001-01-25 Joel Sherrill <joel@OARcorp.com>
* cpu.c, rtems/score/cpu.h: Bug report from Peter Mueller <peter.o.mueller@gmx.de> because of not correcting for the ISR vector table now being allocated from the workspace.
Diffstat (limited to 'c/src/exec/score/cpu/unix/cpu.c')
-rw-r--r--c/src/exec/score/cpu/unix/cpu.c14
1 files changed, 9 insertions, 5 deletions
diff --git a/c/src/exec/score/cpu/unix/cpu.c b/c/src/exec/score/cpu/unix/cpu.c
index 2bc7e4ece0..f7b6a1464f 100644
--- a/c/src/exec/score/cpu/unix/cpu.c
+++ b/c/src/exec/score/cpu/unix/cpu.c
@@ -73,12 +73,18 @@ int cpu_number;
/*PAGE
*
- * _CPU_ISR_From_CPU_Init
+ * _CPU_Initialize_vectors()
+ *
+ * Support routine to initialize the RTEMS vector table after it is allocated.
+ *
+ * UNIX Specific Information:
+ *
+ * Complete initialization since the table is now allocated.
*/
-
+
sigset_t posix_empty_mask;
-void _CPU_ISR_From_CPU_Init()
+void _CPU_Initialize_vectors(void)
{
unsigned32 i;
proc_ptr old_handler;
@@ -309,8 +315,6 @@ void _CPU_Initialize(
_CPU_Table = *cpu_table;
- _CPU_ISR_From_CPU_Init();
-
_CPU_Sync_io_Init();
_CPU_Context_From_CPU_Init();