Changeset cb4185c in rtems
- Timestamp:
- 06/17/05 14:35:57 (17 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 91683dc
- Parents:
- 6fdd3b10
- Location:
- c/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/ChangeLog
r6fdd3b10 rcb4185c 1 2005-06-17 Joel Sherrill <joel@OARcorp.com> 2 3 * librdbg/src/powerpc/excep_f.c: Conditionalize use of ISI vector since 4 it is not supported by the MPC5xx. 5 1 6 2005-06-17 Joel Sherrill <joel@OARcorp.com> 2 7 -
c/src/librdbg/src/powerpc/excep_f.c
r6fdd3b10 rcb4185c 18 18 #include <rdbg/servrpc.h> 19 19 20 20 int 21 21 ExcepToSig (Exception_context * ctx) 22 22 { … … 32 32 return SIGTRAP; 33 33 34 /* At lest the MPC5xx series does not have this vector */ 35 #if defined(ASM_ISI_VECTOR) 34 36 case ASM_ISI_VECTOR: 35 37 return SIGSEGV; 38 #endif 36 39 37 40 case ASM_RESET_VECTOR:
Note: See TracChangeset
for help on using the changeset viewer.