diff options
Diffstat (limited to 'gdb/dicos-tdep.c')
-rw-r--r-- | gdb/dicos-tdep.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gdb/dicos-tdep.c b/gdb/dicos-tdep.c index d64efe56aaf..fe5f853947b 100644 --- a/gdb/dicos-tdep.c +++ b/gdb/dicos-tdep.c @@ -33,9 +33,14 @@ dicos_init_abi (struct gdbarch *gdbarch) set_solib_ops (gdbarch, &solib_target_so_ops); /* Every process, although has its own address space, sees the same - list of shared libraries. */ + list of shared libraries. There's no "main executable" in DICOS, + so this accounts for all code. */ set_gdbarch_has_global_solist (gdbarch, 1); + /* The DICOS breakpoint API takes care of magically making + breakpoints visible to all inferiors. */ + set_gdbarch_has_global_breakpoints (gdbarch, 1); + /* There's no (standard definition of) entry point or a guaranteed text location with a symbol where to place the call dummy, so we put it on the stack. */ |