diff options
author | Jason Molenda <jmolenda@apple.com> | 1999-10-05 23:13:56 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 1999-10-05 23:13:56 +0000 |
commit | 2acceee2182a942e6a79a972009540990f4dfabf (patch) | |
tree | 2ed7ca473f0b49181f1d0214c3450a7eb17f7bcb /gdb/win32-nat.c | |
parent | 3e9c42873ee1d0bbb03039baea78c617174f9269 (diff) | |
download | gdb-2acceee2182a942e6a79a972009540990f4dfabf.zip gdb-2acceee2182a942e6a79a972009540990f4dfabf.tar.gz gdb-2acceee2182a942e6a79a972009540990f4dfabf.tar.bz2 |
import gdb-1999-10-04 snapshot
Diffstat (limited to 'gdb/win32-nat.c')
-rw-r--r-- | gdb/win32-nat.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gdb/win32-nat.c b/gdb/win32-nat.c index 2ea46c8..11e4fa1 100644 --- a/gdb/win32-nat.c +++ b/gdb/win32-nat.c @@ -325,7 +325,9 @@ handle_load_dll (PTR dummy) char *p, *dll_name = NULL; struct objfile *objfile; MEMORY_BASIC_INFORMATION minfo; + struct section_addr_info section_addrs; + memset (§ion_addrs, 0, sizeof (section_addrs)); dll_buf[0] = dll_buf[sizeof (dll_buf) - 1] = '\0'; /* The following code attempts to find the name of the dll by reading the @@ -417,7 +419,8 @@ handle_load_dll (PTR dummy) FIXME: Is this the real reason that we need the 0x1000 ? */ printf_unfiltered ("%x:%s", event->lpBaseOfDll, dll_name); - symbol_file_add (dll_name, 0, (int) event->lpBaseOfDll + 0x1000, 0, 0, 0, 0, 1); + section_addrs.text_addr = (int) event->lpBaseOfDll + 0x1000; + symbol_file_add (dll_name, 0, §ion_addrs, 0, 0, 0, 1); printf_unfiltered ("\n"); return 1; @@ -887,7 +890,7 @@ child_create_inferior (exec_file, allargs, env) /* Ignore the first trap */ child_wait (inferior_pid, &dummy); - proceed ((CORE_ADDR) - 1, TARGET_SIGNAL_0, 0); + proceed ((CORE_ADDR) -1, TARGET_SIGNAL_0, 0); } static void |