diff options
author | Pierre Muller <muller@sourceware.org> | 2010-04-20 00:07:44 +0000 |
---|---|---|
committer | Pierre Muller <muller@sourceware.org> | 2010-04-20 00:07:44 +0000 |
commit | e8f0053d6ec02ca013f7a55bd0aa18c01d9239e0 (patch) | |
tree | 8b26409d392df054c14f731b4dd371b0155d4e87 /gdb/gdbserver/ChangeLog | |
parent | d1b7138c1790d8a7928b070fa6a14e2813419552 (diff) | |
download | gdb-e8f0053d6ec02ca013f7a55bd0aa18c01d9239e0.zip gdb-e8f0053d6ec02ca013f7a55bd0aa18c01d9239e0.tar.gz gdb-e8f0053d6ec02ca013f7a55bd0aa18c01d9239e0.tar.bz2 |
* win32-low.c: Adapt to support also 64-bit architecture.
(child_xfer_memory): Use uintptr_t type for local variable `addr'.
(get_image_name): Use SIZE_T type for local variable `done'.
(psapi_get_dll_name): Use LPVOID type for parameter `BaseAddress'.
(toolhelp_get_dll_name): Idem.
(handle_load_dll): Use CORE_ADDR type for local variable `load_addr'.
Use uintptr_t typecast to avoid warning.
(handle_unload_dll): Use uintptr_t typecast to avoid warning.
(handle_exception): Use phex_nz to avoid warning.
(win32_wait): Remove unused local variable `process'.
Diffstat (limited to 'gdb/gdbserver/ChangeLog')
-rw-r--r-- | gdb/gdbserver/ChangeLog | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gdb/gdbserver/ChangeLog b/gdb/gdbserver/ChangeLog index 08694f0..b26c853 100644 --- a/gdb/gdbserver/ChangeLog +++ b/gdb/gdbserver/ChangeLog @@ -1,5 +1,18 @@ 2010-04-19 Pierre Muller <muller@ics.u-strasbg.fr> + * win32-low.c: Adapt to support also 64-bit architecture. + (child_xfer_memory): Use uintptr_t type for local variable `addr'. + (get_image_name): Use SIZE_T type for local variable `done'. + (psapi_get_dll_name): Use LPVOID type for parameter `BaseAddress'. + (toolhelp_get_dll_name): Idem. + (handle_load_dll): Use CORE_ADDR type for local variable `load_addr'. + Use uintptr_t typecast to avoid warning. + (handle_unload_dll): Use uintptr_t typecast to avoid warning. + (handle_exception): Use phex_nz to avoid warning. + (win32_wait): Remove unused local variable `process'. + +2010-04-19 Pierre Muller <muller@ics.u-strasbg.fr> + * configure.srv (srv_amd64_regobj): Replace `x86-64-avx.o' by `amd64-avx.o'. |