Changeset c54152a2 in rtems
- Timestamp:
- 01/25/01 18:45:59 (23 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 809feccc
- Parents:
- 41caf2df
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/score/cpu/unix/ChangeLog
r41caf2df rc54152a2 1 2001-01-25 Joel Sherrill <joel@OARcorp.com> 2 3 * cpu.c, rtems/score/cpu.h: Bug report from Peter Mueller 4 <peter.o.mueller@gmx.de> because of not correcting for the ISR 5 vector table now being allocated from the workspace. 6 1 7 2001-01-03 Joel Sherrill <joel@OARcorp.com> 2 8 -
c/src/exec/score/cpu/unix/cpu.c
r41caf2df rc54152a2 74 74 /*PAGE 75 75 * 76 * _CPU_ISR_From_CPU_Init 77 */ 78 76 * _CPU_Initialize_vectors() 77 * 78 * Support routine to initialize the RTEMS vector table after it is allocated. 79 * 80 * UNIX Specific Information: 81 * 82 * Complete initialization since the table is now allocated. 83 */ 84 79 85 sigset_t posix_empty_mask; 80 86 81 void _CPU_I SR_From_CPU_Init()87 void _CPU_Initialize_vectors(void) 82 88 { 83 89 unsigned32 i; … … 309 315 310 316 _CPU_Table = *cpu_table; 311 312 _CPU_ISR_From_CPU_Init();313 317 314 318 _CPU_Sync_io_Init(); -
c/src/exec/score/cpu/unix/rtems/score/cpu.h
r41caf2df rc54152a2 679 679 */ 680 680 681 #define _CPU_Initialize_vectors() 681 void _CPU_Initialize_vectors(void); 682 682 683 683 /* -
cpukit/score/cpu/unix/ChangeLog
r41caf2df rc54152a2 1 2001-01-25 Joel Sherrill <joel@OARcorp.com> 2 3 * cpu.c, rtems/score/cpu.h: Bug report from Peter Mueller 4 <peter.o.mueller@gmx.de> because of not correcting for the ISR 5 vector table now being allocated from the workspace. 6 1 7 2001-01-03 Joel Sherrill <joel@OARcorp.com> 2 8 -
cpukit/score/cpu/unix/cpu.c
r41caf2df rc54152a2 74 74 /*PAGE 75 75 * 76 * _CPU_ISR_From_CPU_Init 77 */ 78 76 * _CPU_Initialize_vectors() 77 * 78 * Support routine to initialize the RTEMS vector table after it is allocated. 79 * 80 * UNIX Specific Information: 81 * 82 * Complete initialization since the table is now allocated. 83 */ 84 79 85 sigset_t posix_empty_mask; 80 86 81 void _CPU_I SR_From_CPU_Init()87 void _CPU_Initialize_vectors(void) 82 88 { 83 89 unsigned32 i; … … 309 315 310 316 _CPU_Table = *cpu_table; 311 312 _CPU_ISR_From_CPU_Init();313 317 314 318 _CPU_Sync_io_Init(); -
cpukit/score/cpu/unix/rtems/score/cpu.h
r41caf2df rc54152a2 679 679 */ 680 680 681 #define _CPU_Initialize_vectors() 681 void _CPU_Initialize_vectors(void); 682 682 683 683 /*
Note: See TracChangeset
for help on using the changeset viewer.