Changeset c54152a2 in rtems


Ignore:
Timestamp:
01/25/01 18:45:59 (23 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
809feccc
Parents:
41caf2df
Message:

2001-01-25 Joel Sherrill <joel@…>

  • cpu.c, rtems/score/cpu.h: Bug report from Peter Mueller <peter.o.mueller@…> because of not correcting for the ISR vector table now being allocated from the workspace.
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • c/src/exec/score/cpu/unix/ChangeLog

    r41caf2df rc54152a2  
     12001-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
    172001-01-03      Joel Sherrill <joel@OARcorp.com>
    28
  • c/src/exec/score/cpu/unix/cpu.c

    r41caf2df rc54152a2  
    7474/*PAGE
    7575 *
    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 
    7985sigset_t  posix_empty_mask;
    8086
    81 void _CPU_ISR_From_CPU_Init()
     87void _CPU_Initialize_vectors(void)
    8288{
    8389  unsigned32        i;
     
    309315
    310316  _CPU_Table = *cpu_table;
    311 
    312   _CPU_ISR_From_CPU_Init();
    313317
    314318  _CPU_Sync_io_Init();
  • c/src/exec/score/cpu/unix/rtems/score/cpu.h

    r41caf2df rc54152a2  
    679679 */
    680680
    681 #define _CPU_Initialize_vectors()
     681void _CPU_Initialize_vectors(void);
    682682
    683683/*
  • cpukit/score/cpu/unix/ChangeLog

    r41caf2df rc54152a2  
     12001-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
    172001-01-03      Joel Sherrill <joel@OARcorp.com>
    28
  • cpukit/score/cpu/unix/cpu.c

    r41caf2df rc54152a2  
    7474/*PAGE
    7575 *
    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 
    7985sigset_t  posix_empty_mask;
    8086
    81 void _CPU_ISR_From_CPU_Init()
     87void _CPU_Initialize_vectors(void)
    8288{
    8389  unsigned32        i;
     
    309315
    310316  _CPU_Table = *cpu_table;
    311 
    312   _CPU_ISR_From_CPU_Init();
    313317
    314318  _CPU_Sync_io_Init();
  • cpukit/score/cpu/unix/rtems/score/cpu.h

    r41caf2df rc54152a2  
    679679 */
    680680
    681 #define _CPU_Initialize_vectors()
     681void _CPU_Initialize_vectors(void);
    682682
    683683/*
Note: See TracChangeset for help on using the changeset viewer.