aboutsummaryrefslogtreecommitdiff
path: root/gdb/win32-nat.c
diff options
context:
space:
mode:
authorPierre Muller <muller@sourceware.org>2008-06-18 06:27:34 +0000
committerPierre Muller <muller@sourceware.org>2008-06-18 06:27:34 +0000
commit7488902c738b0d8352fa414ee89e1b5537e13c87 (patch)
tree32dfe3ec9eba4eb92fb5079b91af4ff51d99f42b /gdb/win32-nat.c
parentf34787f832c7a94cda142b7fa867a9be37e8f2af (diff)
downloadgdb-7488902c738b0d8352fa414ee89e1b5537e13c87.zip
gdb-7488902c738b0d8352fa414ee89e1b5537e13c87.tar.gz
gdb-7488902c738b0d8352fa414ee89e1b5537e13c87.tar.bz2
* win32-nat.c (handle_load_dll): Give dll name and load address
if debug_events is on. (handle_unload_dll): Likewise.
Diffstat (limited to 'gdb/win32-nat.c')
-rw-r--r--gdb/win32-nat.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/gdb/win32-nat.c b/gdb/win32-nat.c
index 52ff20a..2c6d955 100644
--- a/gdb/win32-nat.c
+++ b/gdb/win32-nat.c
@@ -747,6 +747,9 @@ handle_load_dll (void *dummy)
solib_end->next = win32_make_so (dll_name, (DWORD) event->lpBaseOfDll);
solib_end = solib_end->next;
+ DEBUG_EVENTS (("gdb: Loading dll \"%s\" at 0x%lx.\n", solib_end->so_name,
+ (DWORD) solib_end->lm_info->load_addr));
+
return 1;
}
@@ -771,6 +774,8 @@ handle_unload_dll (void *dummy)
so->next = sodel->next;
if (!so->next)
solib_end = so;
+ DEBUG_EVENTS (("gdb: Unloading dll \"%s\".\n", sodel->so_name));
+
win32_free_so (sodel);
solib_add (NULL, 0, NULL, auto_solib_add);
return 1;