aboutsummaryrefslogtreecommitdiff
path: root/sim/common/sim-break.c
AgeCommit message (Collapse)AuthorFilesLines
1998-03-15 * dv-sockser.c, dv-sockser.h: New files.Doug Evans1-2/+2
* Make-common.in (dv-sockser.o): Add rule for. * aclocal.m4: Check for fcntl.h. * config.h: Add HAVE_FCNTL_H. * sim-break.c (remove_breakpoint): Fix thinko. * sim-hload.c (sim_load): Provide default value of SIM_HANDLES_LMA. Use SIM_HANDLES_LMA for lma_p arg to sim_load_file.
1998-03-11Allow more than just read, write and exec memory spaces in the coreAndrew Cagney1-4/+5
module.
1997-11-19 * sim-signal.c, sim-signal.h: New files.Doug Evans1-2/+1
* Make-common.in (sim-signal.o): Add rule for. (SIM_NEW_COMMON_OBJS): Add sim-signal.o. * sim-abort.c: Don't include <signal.h>. * sim-basics.h: #include "sim-signal.h". * sim-break.c: Don't include <signal.h>. (sim_handle_breakpoint): Replace SIGTRAP with SIM_SIGTRAP. * sim-core.c: Don't include <signal.h>. (SIGBUS): Delete definition. (sim_core_signal): Replace SIGSEGV,SIGBUS with SIM_SIGSEGV,SIM_SIGBUS. * sim-engine.c: Don't include <signal.h>. (sim_engine_abort): Replace SIGABRT with SIM_SIGABRT. * sim-reason.c (sim_stop_reason): Call sim_signal_to_host. * sim-resume.c: Don't include <signal.h>. (SIGTRAP): Delete definition. (has_stepped): Replace SIGTRAP with SIM_SIGTRAP. * sim-stop.c: Don't include <signal.h>. (control_c_simulation): Replace SIGINT with SIM_SIGINT. * sim-watch.c: Don't include <signal.h>. (handle_watchpoint): Replace SIGINT with SIM_SIGINT.
1997-11-19 * sim-core.c (sim_core_signal): Use CIA_ADDR to fetch value.Doug Evans1-1/+1
* sim-break.c (sim_handle_breakpoint): Likewise.
1997-09-25 * sim-break.c (sim_set_breakpoint sim_clear_breakpoint): Use ZALLOCStu Grossman1-2/+2
and zfree instead of xmalloc and free. Prevents warnings.
1997-09-25 * Make-common.in: New files sim-break.c, sim-break.h.Stu Grossman1-0/+278
* sim-base.h: Add point to breakpoint list to sim_state_base. * sim-break.c sim-break.h: New modules that implement intrinsic breakpoint support. * sim-module.c: Add breakpoint module.