o Add SIM_SIGFPE to sim-signals

o Start SIM_SIG* at 64 so that the use of host signal numbers can be
  detected and reported.
o Update MIPS simulator to use sim-signal.
This commit is contained in:
Andrew Cagney
1997-11-20 09:50:36 +00:00
parent a09a30d298
commit 232156dee9
5 changed files with 25 additions and 18 deletions

View File

@@ -70,6 +70,12 @@ sim_signal_to_host (SIM_DESC sd, SIM_SIGNAL sig)
case SIM_SIGXCPU :
#ifdef SIGXCPU
return SIGXCPU;
#endif
break;
case SIM_SIGFPE:
#ifdef SIGXCPU
return SIGFPE;
#endif
break;
}