Changeset 4e556493 in rtems
- Timestamp:
- 07/01/99 21:52:01 (24 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- e2ba0af6
- Parents:
- 64b29600
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/sparc/erc32/gnatsupp/gnatsupp.c
r64b29600 r4e556493 93 93 * which cannot happen and where some of the space is used to pass 94 94 * paramaters to the program. Trap 0x1d is used by the clock tick 95 * and 0x83 by the remote debugging stub. 95 * and 0x83 by the remote debugging stub. Traps 0x14, 0x15, and 0x17 96 * are used by the console device driver. 96 97 */ 97 98 98 99 if (( trap >= 0x11 ) && ( trap <= 0x1f )) { 99 if ( trap != 0x1d )100 if ( trap != 0x1d && trap != 0x14 && trap != 0x15 && trap != 0x17 ) 100 101 rtems_interrupt_catch( __gnat_interrupt_handler, 101 102 trap, &previous_isr );
Note: See TracChangeset
for help on using the changeset viewer.