forked from Imagelibrary/binutils-gdb
2002-04-09 Daniel Jacobowitz <drow@mvista.com>
* linux-low.c (linux_look_up_symbols): New hook.
(linux_target_ops): Add linux_look_up_symbols.
* remote-utils.c (decode_address): New function.
(look_up_one_symbol): New function.
* server.c (handle_query): Call target look_up_symbols hook.
* server.h (look_up_one_symbol): Add prototype.
* target.h (struct target_ops): Add look_up_symbols hook.
This commit is contained in:
@@ -63,13 +63,9 @@ handle_query (char *own_buf)
|
||||
{
|
||||
if (strcmp ("qSymbol::", own_buf) == 0)
|
||||
{
|
||||
#if 0
|
||||
strcpy (own_buf, "qSymbol:");
|
||||
hexify (own_buf + strlen ("qSymbol:"), "main", 4);
|
||||
putpkt (own_buf);
|
||||
getpkt (own_buf);
|
||||
fprintf (stderr, "Got %s", own_buf);
|
||||
#endif
|
||||
if (the_target->look_up_symbols != NULL)
|
||||
(*the_target->look_up_symbols) ();
|
||||
|
||||
strcpy (own_buf, "OK");
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user