mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-05 15:15:44 +00:00
2005-06-17 Joel Sherrill <joel@OARcorp.com>
* librdbg/src/powerpc/excep_f.c: Conditionalize use of ISI vector since it is not supported by the MPC5xx.
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2005-06-17 Joel Sherrill <joel@OARcorp.com>
|
||||
|
||||
* librdbg/src/powerpc/excep_f.c: Conditionalize use of ISI vector since
|
||||
it is not supported by the MPC5xx.
|
||||
|
||||
2005-06-17 Joel Sherrill <joel@OARcorp.com>
|
||||
|
||||
* libchip/network/if_dc.c: Begin to convert to new PCI and IRQ
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
#include <rdbg/rdbg.h>
|
||||
#include <rdbg/servrpc.h>
|
||||
|
||||
int
|
||||
int
|
||||
ExcepToSig (Exception_context * ctx)
|
||||
{
|
||||
int excep = getExcNum (ctx);
|
||||
@@ -31,8 +31,11 @@ ExcepToSig (Exception_context * ctx)
|
||||
case ASM_SYS_VECTOR:
|
||||
return SIGTRAP;
|
||||
|
||||
/* At lest the MPC5xx series does not have this vector */
|
||||
#if defined(ASM_ISI_VECTOR)
|
||||
case ASM_ISI_VECTOR:
|
||||
return SIGSEGV;
|
||||
#endif
|
||||
|
||||
case ASM_RESET_VECTOR:
|
||||
case ASM_MACH_VECTOR:
|
||||
|
||||
Reference in New Issue
Block a user