diff options
Diffstat (limited to 'gdb/nlm')
-rw-r--r-- | gdb/nlm/gdbserve.c | 8 | ||||
-rw-r--r-- | gdb/nlm/ppc.c | 5 |
2 files changed, 6 insertions, 7 deletions
diff --git a/gdb/nlm/gdbserve.c b/gdb/nlm/gdbserve.c index 1fc1daf78c1..62adf3a8d1b 100644 --- a/gdb/nlm/gdbserve.c +++ b/gdb/nlm/gdbserve.c @@ -529,9 +529,13 @@ handle_exception (frame) static struct DBG_LoadDefinitionStructure *ldinfo = 0; static unsigned char first_insn[BREAKPOINT_SIZE]; /* The first instruction in the program. */ - /* Apparently the bell can sometimes be ringing at this point, and - should be stopped. */ +#if 0 + /* According to some documentation from Novell, the bell sometimes + may be ringing at this point. This can be stopped on Netware 4 + systems by calling the undocumented StopBell() function. */ + StopBell (); +#endif if (remote_debug) { diff --git a/gdb/nlm/ppc.c b/gdb/nlm/ppc.c index e171efcb5e7..e68397bc96b 100644 --- a/gdb/nlm/ppc.c +++ b/gdb/nlm/ppc.c @@ -255,8 +255,3 @@ do_status (ptr, frame) *ptr = '\000'; } - -void -StopBell() -{ -} |