Changeset d135fc52 in rtems


Ignore:
Timestamp:
01/08/97 16:22:22 (27 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
fc5e2d73
Parents:
c6126e57
Message:

_CPU_Trap_Table_area is now conditional based on whether or not
the application requires rtems to allocate a trap table

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • c/src/tests/sptests/spsize/size.c

    rc6126e57 rd135fc52  
    394394uninitialized += (sizeof _CPU_Interrupt_stack_low) +
    395395                 (sizeof _CPU_Interrupt_stack_high) +
    396                  (sizeof _CPU_Null_fp_context) +
    397                  (sizeof _CPU_Trap_Table_area);
     396                 (sizeof _CPU_Null_fp_context);
     397
     398#ifndef NO_TABLE_MOVE
     399uninitialized += (sizeof _CPU_Trap_Table_area);
     400#endif
    398401
    399402#ifdef erc32
  • testsuites/sptests/spsize/size.c

    rc6126e57 rd135fc52  
    394394uninitialized += (sizeof _CPU_Interrupt_stack_low) +
    395395                 (sizeof _CPU_Interrupt_stack_high) +
    396                  (sizeof _CPU_Null_fp_context) +
    397                  (sizeof _CPU_Trap_Table_area);
     396                 (sizeof _CPU_Null_fp_context);
     397
     398#ifndef NO_TABLE_MOVE
     399uninitialized += (sizeof _CPU_Trap_Table_area);
     400#endif
    398401
    399402#ifdef erc32
Note: See TracChangeset for help on using the changeset viewer.