aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJ.T. Conklin <jtc@acorntoolworks.com>1995-03-17 00:03:11 +0000
committerJ.T. Conklin <jtc@acorntoolworks.com>1995-03-17 00:03:11 +0000
commit334655aae9f6ab1df1ab89157d58523c4fcb20b1 (patch)
treefadc4e6502617fbdebd446383f765a696dc3e6f9
parentd1f14b46bdd919d314010aefeb7f93cdc47bfc9e (diff)
downloadfsf-binutils-gdb-334655aae9f6ab1df1ab89157d58523c4fcb20b1.zip
fsf-binutils-gdb-334655aae9f6ab1df1ab89157d58523c4fcb20b1.tar.gz
fsf-binutils-gdb-334655aae9f6ab1df1ab89157d58523c4fcb20b1.tar.bz2
* nlm/gdbserve.c (handle_exception): #if out call to StopBell,
as it is not available on NetWare 3 or PIN. * nlm/ppc.c (StopBell): Removed.
-rw-r--r--gdb/ChangeLog6
-rw-r--r--gdb/nlm/gdbserve.c8
-rw-r--r--gdb/nlm/ppc.c5
3 files changed, 12 insertions, 7 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 1afd371..616b2e4 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,9 @@
+Thu Mar 16 15:54:00 1995 J.T. Conklin <jtc@rtl.cygnus.com>
+
+ * nlm/gdbserve.c (handle_exception): #if out call to StopBell,
+ as it is not available on NetWare 3 or PIN.
+ * nlm/ppc.c (StopBell): Removed.
+
Thu Mar 16 12:14:41 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
* xcoffread.c (read_xcoff_symtab): When creating a dummy parameter
diff --git a/gdb/nlm/gdbserve.c b/gdb/nlm/gdbserve.c
index 1fc1daf..62adf3a 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 e171efc..e68397b 100644
--- a/gdb/nlm/ppc.c
+++ b/gdb/nlm/ppc.c
@@ -255,8 +255,3 @@ do_status (ptr, frame)
*ptr = '\000';
}
-
-void
-StopBell()
-{
-}