mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-23 03:29:47 +08:00
* 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.
This commit is contained in:
@ -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)
|
Thu Mar 16 12:14:41 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
|
||||||
|
|
||||||
* xcoffread.c (read_xcoff_symtab): When creating a dummy parameter
|
* xcoffread.c (read_xcoff_symtab): When creating a dummy parameter
|
||||||
|
@ -529,9 +529,13 @@ handle_exception (frame)
|
|||||||
static struct DBG_LoadDefinitionStructure *ldinfo = 0;
|
static struct DBG_LoadDefinitionStructure *ldinfo = 0;
|
||||||
static unsigned char first_insn[BREAKPOINT_SIZE]; /* The first instruction in the program. */
|
static unsigned char first_insn[BREAKPOINT_SIZE]; /* The first instruction in the program. */
|
||||||
|
|
||||||
/* Apparently the bell can sometimes be ringing at this point, and
|
#if 0
|
||||||
should be stopped. */
|
/* 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 ();
|
StopBell ();
|
||||||
|
#endif
|
||||||
|
|
||||||
if (remote_debug)
|
if (remote_debug)
|
||||||
{
|
{
|
||||||
|
@ -255,8 +255,3 @@ do_status (ptr, frame)
|
|||||||
|
|
||||||
*ptr = '\000';
|
*ptr = '\000';
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
|
||||||
StopBell()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
Reference in New Issue
Block a user