1999-08-09 23:36:23 +02:00
|
|
|
|
/* Kernel Object Display facility for Cisco
|
2001-03-06 09:22:02 +01:00
|
|
|
|
Copyright 1999, 2000 Free Software Foundation, Inc.
|
1999-08-09 23:36:23 +02:00
|
|
|
|
|
|
|
|
|
Written by Tom Tromey <tromey@cygnus.com>.
|
|
|
|
|
|
|
|
|
|
This file is part of GDB.
|
|
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
|
|
|
|
|
|
|
|
|
#include "defs.h"
|
|
|
|
|
#include "gdb_string.h"
|
1999-09-22 05:28:34 +02:00
|
|
|
|
#include "kod.h"
|
1999-08-09 23:36:23 +02:00
|
|
|
|
|
|
|
|
|
#ifdef HAVE_STDLIB_H
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* Define this to turn off communication with target. */
|
|
|
|
|
/* #define FAKE_PACKET */
|
|
|
|
|
|
|
|
|
|
/* Size of buffer used for remote communication. */
|
|
|
|
|
#define PBUFSIZ 400
|
|
|
|
|
|
|
|
|
|
/* Pointers to gdb callbacks. */
|
|
|
|
|
static void (*gdb_kod_display) (char *);
|
|
|
|
|
static void (*gdb_kod_query) (char *, char *, int *);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Initialize and return library name and version.
|
|
|
|
|
The gdb side of KOD, kod.c, passes us two functions: one for
|
|
|
|
|
displaying output (presumably to the user) and the other for
|
|
|
|
|
querying the target. */
|
|
|
|
|
char *
|
1999-09-22 05:28:34 +02:00
|
|
|
|
cisco_kod_open (kod_display_callback_ftype *display_func,
|
|
|
|
|
kod_query_callback_ftype *query_func)
|
1999-08-09 23:36:23 +02:00
|
|
|
|
{
|
|
|
|
|
char buffer[PBUFSIZ];
|
|
|
|
|
int bufsiz = PBUFSIZ;
|
|
|
|
|
int i, count;
|
|
|
|
|
|
|
|
|
|
gdb_kod_display = display_func;
|
|
|
|
|
gdb_kod_query = query_func;
|
|
|
|
|
|
|
|
|
|
/* Get the OS info, and check the version field. This is the stub
|
|
|
|
|
version, which we use to see whether we will understand what
|
|
|
|
|
comes back. This is lame, but the `qKoL' request doesn't
|
|
|
|
|
actually provide enough configurability.
|
|
|
|
|
|
|
|
|
|
Right now the only defined version number is `0.0.0'.
|
|
|
|
|
This stub supports qKoI and the `a' (any) object requests qKaL
|
|
|
|
|
and qKaI. Each `a' object is returned as a 4-byte integer ID.
|
|
|
|
|
An info request on an object returns a pair of 4-byte integers;
|
|
|
|
|
the first is the object pointer and the second is the thread ID. */
|
|
|
|
|
|
|
|
|
|
#ifndef FAKE_PACKET
|
|
|
|
|
(*gdb_kod_query) ("oI;", buffer, &bufsiz);
|
|
|
|
|
#else
|
|
|
|
|
strcpy (buffer, "Cisco IOS/Classic/13.4 0.0.0");
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
count = 2;
|
|
|
|
|
for (i = 0; count && buffer[i] != '\0'; ++i)
|
|
|
|
|
{
|
|
|
|
|
if (buffer[i] == ' ')
|
|
|
|
|
--count;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (buffer[i] == '\0')
|
2005-02-10 Andrew Cagney <cagney@gnu.org>
Mark up all error and warning messages.
* ada-lang.c, amd64-tdep.c, arch-utils.c, breakpoint.c: Update.
* bsd-kvm.c, bsd-uthread.c, coff-solib.h, coffread.c: Update.
* core-aout.c, core-regset.c, corefile.c, corelow.c: Update.
* cp-abi.c, cp-support.c, cp-valprint.c, cris-tdep.c: Update.
* dbxread.c, demangle.c, doublest.c, dsrec.c: Update.
* dve3900-rom.c, dwarf2expr.c, dwarf2loc.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, eval.c: Update.
* event-top.c, exec.c, expprint.c, f-lang.c: Update.
* f-typeprint.c, f-valprint.c, fbsd-nat.c, findvar.c: Update.
* frame.c, frv-linux-tdep.c, gcore.c, gdbtypes.c: Update.
* gnu-nat.c, gnu-v2-abi.c, gnu-v3-abi.c, go32-nat.c: Update.
* hpacc-abi.c, hppa-hpux-nat.c, hppa-hpux-tdep.c: Update.
* hppa-linux-nat.c, hppa-linux-tdep.c, hppa-tdep.c: Update.
* hpread.c, hpux-thread.c, i386-linux-nat.c: Update.
* i386-linux-tdep.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386gnu-nat.c, i387-tdep.c, ia64-linux-nat.c: Update.
* ia64-tdep.c, inf-child.c, inf-ptrace.c, inf-ttrace.c: Update.
* infcall.c, infcmd.c, inflow.c, infptrace.c, infrun.c: Update.
* inftarg.c, interps.c, irix5-nat.c, jv-lang.c: Update.
* kod-cisco.c, kod.c, language.c, libunwind-frame.c: Update.
* linespec.c, linux-nat.c, linux-thread-db.c, m2-lang.c: Update.
* m32r-rom.c, m68hc11-tdep.c, m68k-tdep.c: Update.
* m68klinux-nat.c, macrocmd.c, macroexp.c, main.c: Update.
* maint.c, mdebugread.c, mem-break.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mipsread.c, monitor.c: Update.
* nlmread.c, nto-procfs.c, objc-lang.c, objfiles.c: Update.
* observer.c, ocd.c, p-lang.c, p-typeprint.c: Update.
* p-valprint.c, pa64solib.c, parse.c, ppc-linux-tdep.c: Update.
* ppcnbsd-tdep.c, printcmd.c, procfs.c, remote-e7000.c: Update.
* remote-fileio.c, remote-m32r-sdi.c, remote-rdi.c: Update.
* remote-rdp.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote-utils.h, remote.c: Update.
* rom68k-rom.c, rs6000-nat.c, s390-tdep.c, scm-lang.c: Update.
* ser-e7kpc.c, ser-tcp.c, ser-unix.c, sh-tdep.c: Update.
* sh3-rom.c, shnbsd-tdep.c, sol-thread.c, solib-aix5.c: Update.
* solib-frv.c, solib-irix.c, solib-osf.c, solib-pa64.c: Update.
* solib-som.c, solib-sunos.c, solib-svr4.c, solib.c: Update.
* somread.c, somsolib.c, source.c, stabsread.c: Update.
* stack.c, std-regs.c, symfile-mem.c, symfile.c: Update.
* symmisc.c, symtab.c, target.c, thread.c, top.c: Update.
* tracepoint.c, trad-frame.c, typeprint.c, utils.c: Update.
* uw-thread.c, valarith.c, valops.c, valprint.c: Update.
* value.c, varobj.c, version.in, win32-nat.c, wince.c: Update.
* xcoffread.c, xcoffsolib.c, cli/cli-cmds.c: Update.
* cli/cli-decode.c, cli/cli-dump.c, cli/cli-logging.c: Update.
* cli/cli-script.c, cli/cli-setshow.c, mi/mi-cmd-break.c: Update.
* mi/mi-cmd-disas.c, mi/mi-cmd-env.c, mi/mi-cmd-file.c: Update.
* mi/mi-cmd-stack.c, mi/mi-cmd-var.c, mi/mi-getopt.c: Update.
* mi/mi-symbol-cmds.c, tui/tui-layout.c, tui/tui-stack.c: Update.
* tui/tui-win.c: Update.
2005-02-11 05:06:14 +01:00
|
|
|
|
error (_("Remote returned malformed packet."));
|
1999-08-09 23:36:23 +02:00
|
|
|
|
if (strcmp (&buffer[i], "0.0.0"))
|
2005-02-10 Andrew Cagney <cagney@gnu.org>
Mark up all error and warning messages.
* ada-lang.c, amd64-tdep.c, arch-utils.c, breakpoint.c: Update.
* bsd-kvm.c, bsd-uthread.c, coff-solib.h, coffread.c: Update.
* core-aout.c, core-regset.c, corefile.c, corelow.c: Update.
* cp-abi.c, cp-support.c, cp-valprint.c, cris-tdep.c: Update.
* dbxread.c, demangle.c, doublest.c, dsrec.c: Update.
* dve3900-rom.c, dwarf2expr.c, dwarf2loc.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, eval.c: Update.
* event-top.c, exec.c, expprint.c, f-lang.c: Update.
* f-typeprint.c, f-valprint.c, fbsd-nat.c, findvar.c: Update.
* frame.c, frv-linux-tdep.c, gcore.c, gdbtypes.c: Update.
* gnu-nat.c, gnu-v2-abi.c, gnu-v3-abi.c, go32-nat.c: Update.
* hpacc-abi.c, hppa-hpux-nat.c, hppa-hpux-tdep.c: Update.
* hppa-linux-nat.c, hppa-linux-tdep.c, hppa-tdep.c: Update.
* hpread.c, hpux-thread.c, i386-linux-nat.c: Update.
* i386-linux-tdep.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386gnu-nat.c, i387-tdep.c, ia64-linux-nat.c: Update.
* ia64-tdep.c, inf-child.c, inf-ptrace.c, inf-ttrace.c: Update.
* infcall.c, infcmd.c, inflow.c, infptrace.c, infrun.c: Update.
* inftarg.c, interps.c, irix5-nat.c, jv-lang.c: Update.
* kod-cisco.c, kod.c, language.c, libunwind-frame.c: Update.
* linespec.c, linux-nat.c, linux-thread-db.c, m2-lang.c: Update.
* m32r-rom.c, m68hc11-tdep.c, m68k-tdep.c: Update.
* m68klinux-nat.c, macrocmd.c, macroexp.c, main.c: Update.
* maint.c, mdebugread.c, mem-break.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mipsread.c, monitor.c: Update.
* nlmread.c, nto-procfs.c, objc-lang.c, objfiles.c: Update.
* observer.c, ocd.c, p-lang.c, p-typeprint.c: Update.
* p-valprint.c, pa64solib.c, parse.c, ppc-linux-tdep.c: Update.
* ppcnbsd-tdep.c, printcmd.c, procfs.c, remote-e7000.c: Update.
* remote-fileio.c, remote-m32r-sdi.c, remote-rdi.c: Update.
* remote-rdp.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote-utils.h, remote.c: Update.
* rom68k-rom.c, rs6000-nat.c, s390-tdep.c, scm-lang.c: Update.
* ser-e7kpc.c, ser-tcp.c, ser-unix.c, sh-tdep.c: Update.
* sh3-rom.c, shnbsd-tdep.c, sol-thread.c, solib-aix5.c: Update.
* solib-frv.c, solib-irix.c, solib-osf.c, solib-pa64.c: Update.
* solib-som.c, solib-sunos.c, solib-svr4.c, solib.c: Update.
* somread.c, somsolib.c, source.c, stabsread.c: Update.
* stack.c, std-regs.c, symfile-mem.c, symfile.c: Update.
* symmisc.c, symtab.c, target.c, thread.c, top.c: Update.
* tracepoint.c, trad-frame.c, typeprint.c, utils.c: Update.
* uw-thread.c, valarith.c, valops.c, valprint.c: Update.
* value.c, varobj.c, version.in, win32-nat.c, wince.c: Update.
* xcoffread.c, xcoffsolib.c, cli/cli-cmds.c: Update.
* cli/cli-decode.c, cli/cli-dump.c, cli/cli-logging.c: Update.
* cli/cli-script.c, cli/cli-setshow.c, mi/mi-cmd-break.c: Update.
* mi/mi-cmd-disas.c, mi/mi-cmd-env.c, mi/mi-cmd-file.c: Update.
* mi/mi-cmd-stack.c, mi/mi-cmd-var.c, mi/mi-getopt.c: Update.
* mi/mi-symbol-cmds.c, tui/tui-layout.c, tui/tui-stack.c: Update.
* tui/tui-win.c: Update.
2005-02-11 05:06:14 +01:00
|
|
|
|
error (_("Remote returned unknown stub version: %s."), &buffer[i]);
|
1999-08-09 23:36:23 +02:00
|
|
|
|
|
|
|
|
|
/* Return name, version, and description. I hope we have enough
|
|
|
|
|
space. */
|
1999-12-07 04:56:43 +01:00
|
|
|
|
return (xstrdup ("gdbkodcisco v0.0.0 - Cisco Kernel Object Display"));
|
1999-08-09 23:36:23 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Close the connection. */
|
|
|
|
|
void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
cisco_kod_close (void)
|
1999-08-09 23:36:23 +02:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Print a "bad packet" message. */
|
|
|
|
|
static void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
bad_packet (void)
|
1999-08-09 23:36:23 +02:00
|
|
|
|
{
|
|
|
|
|
(*gdb_kod_display) ("Remote target returned malformed packet.\n");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Print information about currently known kernel objects.
|
|
|
|
|
We currently ignore the argument. There is only one mode of
|
|
|
|
|
querying the Cisco kernel: we ask for a dump of everything, and
|
|
|
|
|
it returns it. */
|
|
|
|
|
void
|
|
|
|
|
cisco_kod_request (char *arg, int from_tty)
|
|
|
|
|
{
|
|
|
|
|
char buffer[PBUFSIZ], command[PBUFSIZ];
|
|
|
|
|
int done = 0, i;
|
|
|
|
|
int fail = 0;
|
|
|
|
|
|
2000-11-29 15:41:34 +01:00
|
|
|
|
char **sync_ids = NULL;
|
1999-08-09 23:36:23 +02:00
|
|
|
|
int sync_len = 0;
|
|
|
|
|
int sync_next = 0;
|
|
|
|
|
char *prev_id = NULL;
|
|
|
|
|
|
|
|
|
|
if (! arg || strcmp (arg, "any"))
|
|
|
|
|
{
|
|
|
|
|
/* "Top-level" command. This is really silly, but it also seems
|
|
|
|
|
to be how KOD is defined. */
|
|
|
|
|
/* Even sillier is the fact that this first line must start
|
|
|
|
|
with the word "List". See kod.tcl. */
|
|
|
|
|
(*gdb_kod_display) ("List of Cisco Kernel Objects\n");
|
|
|
|
|
(*gdb_kod_display) ("Object\tDescription\n");
|
|
|
|
|
(*gdb_kod_display) ("any\tAny and all objects\n");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
while (! done)
|
|
|
|
|
{
|
|
|
|
|
int off = 0; /* Where we are in the string. */
|
|
|
|
|
long count; /* Number of objects in this packet. */
|
|
|
|
|
int bufsiz = PBUFSIZ;
|
|
|
|
|
char *s_end;
|
|
|
|
|
|
|
|
|
|
strcpy (command, "aL");
|
|
|
|
|
if (prev_id)
|
|
|
|
|
{
|
|
|
|
|
strcat (command, ",");
|
|
|
|
|
strcat (command, prev_id);
|
|
|
|
|
}
|
|
|
|
|
strcat (command, ";");
|
|
|
|
|
|
|
|
|
|
#ifndef FAKE_PACKET
|
|
|
|
|
/* We talk to the target by calling through the query function
|
|
|
|
|
passed to us when we were initialized. */
|
|
|
|
|
(*gdb_kod_query) (command, buffer, &bufsiz);
|
|
|
|
|
#else
|
|
|
|
|
/* Fake up a multi-part packet. */
|
|
|
|
|
if (! strncmp (&command[3], "a500005a", 8))
|
|
|
|
|
strcpy (buffer, "KAL,01,1,f500005f;f500005f;");
|
|
|
|
|
else
|
|
|
|
|
strcpy (buffer, "KAL,02,0,a500005a;a500005a;de02869f;");
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* Empty response is an error. */
|
|
|
|
|
if (strlen (buffer) == 0)
|
|
|
|
|
{
|
|
|
|
|
(*gdb_kod_display) ("Remote target did not recognize kernel object query command.\n");
|
|
|
|
|
fail = 1;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* If we don't get a `K' response then the buffer holds the
|
|
|
|
|
target's error message. */
|
|
|
|
|
if (buffer[0] != 'K')
|
|
|
|
|
{
|
|
|
|
|
(*gdb_kod_display) (buffer);
|
|
|
|
|
fail = 1;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Make sure we get the response we expect. */
|
|
|
|
|
if (strncmp (buffer, "KAL,", 4))
|
|
|
|
|
{
|
|
|
|
|
bad_packet ();
|
|
|
|
|
fail = 1;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
off += 4;
|
|
|
|
|
|
|
|
|
|
/* Parse out the count. We expect to convert exactly two
|
|
|
|
|
characters followed by a comma. */
|
|
|
|
|
count = strtol (&buffer[off], &s_end, 16);
|
|
|
|
|
if (s_end - &buffer[off] != 2 || buffer[off + 2] != ',')
|
|
|
|
|
{
|
|
|
|
|
bad_packet ();
|
|
|
|
|
fail = 1;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
off += 3;
|
|
|
|
|
|
|
|
|
|
/* Parse out the `done' flag. */
|
|
|
|
|
if ((buffer[off] != '0' && buffer[off] != '1')
|
|
|
|
|
|| buffer[off + 1] != ',')
|
|
|
|
|
{
|
|
|
|
|
bad_packet ();
|
|
|
|
|
fail = 1;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
done = buffer[off] == '1';
|
|
|
|
|
off += 2;
|
|
|
|
|
|
|
|
|
|
/* Id of the last item; we might this to construct the next
|
|
|
|
|
request. */
|
|
|
|
|
prev_id = &buffer[off];
|
|
|
|
|
if (strlen (prev_id) < 8 || buffer[off + 8] != ';')
|
|
|
|
|
{
|
|
|
|
|
bad_packet ();
|
|
|
|
|
fail = 1;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
buffer[off + 8] = '\0';
|
|
|
|
|
off += 9;
|
|
|
|
|
|
|
|
|
|
sync_len += count;
|
2000-11-29 15:41:34 +01:00
|
|
|
|
sync_ids = (char **) xrealloc (sync_ids, sync_len * sizeof (char *));
|
1999-08-09 23:36:23 +02:00
|
|
|
|
|
|
|
|
|
for (i = 0; i < count; ++i)
|
|
|
|
|
{
|
|
|
|
|
if (strlen (&buffer[off]) < 8 || buffer[off + 8] != ';')
|
|
|
|
|
{
|
|
|
|
|
bad_packet ();
|
|
|
|
|
fail = 1;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
buffer[off + 8] = '\0';
|
|
|
|
|
sync_ids[sync_next++] = xstrdup (&buffer[off]);
|
|
|
|
|
off += 9;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (buffer[off] != '\0')
|
|
|
|
|
{
|
|
|
|
|
bad_packet ();
|
|
|
|
|
fail = 1;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* We've collected all the sync object IDs. Now query to get the
|
|
|
|
|
specific information, and arrange to print this info. */
|
|
|
|
|
if (! fail)
|
|
|
|
|
{
|
|
|
|
|
(*gdb_kod_display) ("Object ID\tObject Pointer\tThread ID\n");
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < sync_next; ++i)
|
|
|
|
|
{
|
|
|
|
|
int off = 0;
|
|
|
|
|
int bufsiz = PBUFSIZ;
|
|
|
|
|
|
|
|
|
|
/* For now assume a query can be accomplished in a single
|
|
|
|
|
transaction. This is implied in the protocol document.
|
|
|
|
|
See comments above, and the KOD protocol document, to
|
|
|
|
|
understand the parsing of the return value. */
|
|
|
|
|
strcpy (command, "aI,");
|
|
|
|
|
strcat (command, sync_ids[i]);
|
|
|
|
|
strcat (command, ";");
|
|
|
|
|
|
|
|
|
|
#ifndef FAKE_PACKET
|
|
|
|
|
(*gdb_kod_query) (command, buffer, &bufsiz);
|
|
|
|
|
#else
|
|
|
|
|
strcpy (buffer, "KAI,");
|
|
|
|
|
strcat (buffer, sync_ids[i]);
|
|
|
|
|
strcat (buffer, ",ffef00a0,cd00123d;");
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
if (strlen (buffer) == 0)
|
|
|
|
|
{
|
|
|
|
|
(*gdb_kod_display) ("Remote target did not recognize KOD command.\n");
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (strncmp (buffer, "KAI,", 4))
|
|
|
|
|
{
|
|
|
|
|
bad_packet ();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
off += 4;
|
|
|
|
|
|
|
|
|
|
if (strncmp (&buffer[off], sync_ids[i], 8)
|
|
|
|
|
|| buffer[off + 8] != ',')
|
|
|
|
|
{
|
|
|
|
|
bad_packet ();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
off += 9;
|
|
|
|
|
|
|
|
|
|
/* Extract thread id and sync object pointer. */
|
|
|
|
|
if (strlen (&buffer[off]) != 2 * 8 + 2
|
|
|
|
|
|| buffer[off + 8] != ','
|
|
|
|
|
|| buffer[off + 17] != ';')
|
|
|
|
|
{
|
|
|
|
|
bad_packet ();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
buffer[off + 8] = '\0';
|
|
|
|
|
buffer[off + 17] = '\0';
|
|
|
|
|
|
|
|
|
|
/* Display the result. */
|
|
|
|
|
(*gdb_kod_display) (sync_ids[i]);
|
|
|
|
|
(*gdb_kod_display) ("\t");
|
|
|
|
|
(*gdb_kod_display) (&buffer[off]);
|
|
|
|
|
(*gdb_kod_display) ("\t");
|
|
|
|
|
(*gdb_kod_display) (&buffer[off + 9]);
|
|
|
|
|
(*gdb_kod_display) ("\n");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Free memory. */
|
|
|
|
|
for (i = 0; i < sync_next; ++i)
|
2000-12-15 02:01:51 +01:00
|
|
|
|
xfree (sync_ids[i]);
|
|
|
|
|
xfree (sync_ids);
|
1999-08-09 23:36:23 +02:00
|
|
|
|
}
|