diff options
author | Christopher Faylor <me+cygwin@cgf.cx> | 2001-02-06 05:01:04 +0000 |
---|---|---|
committer | Christopher Faylor <me+cygwin@cgf.cx> | 2001-02-06 05:01:04 +0000 |
commit | 554cb4863bca7ec8d0b575d4a91396ed8fbdf624 (patch) | |
tree | 259c8d6c6aad66b1b2b80af87a213b7a5b892583 /gdb | |
parent | 042be3a9b371fa129c5d1e8f02ea0ad9e3588c63 (diff) | |
download | gdb-554cb4863bca7ec8d0b575d4a91396ed8fbdf624.zip gdb-554cb4863bca7ec8d0b575d4a91396ed8fbdf624.tar.gz gdb-554cb4863bca7ec8d0b575d4a91396ed8fbdf624.tar.bz2 |
* win32-nat.c: Change PTR to void * throughout.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/win32-nat.c | 10 | ||||
-rw-r--r-- | gdb/windows-nat.c | 10 |
3 files changed, 14 insertions, 10 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 4dc7bd6..98d226f 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2001-02-05 Christopher Faylor <cgf@cygnus.com> + + * win32-nat.c: Change PTR to void * throughout. + 2001-02-05 J.T. Conklin <jtc@redback.com> * signals.h: Removed. diff --git a/gdb/win32-nat.c b/gdb/win32-nat.c index 3e24711..1eeaf01 100644 --- a/gdb/win32-nat.c +++ b/gdb/win32-nat.c @@ -514,7 +514,7 @@ register_loaded_dll (const char *name, DWORD load_addr) /* Wait for child to do something. Return pid of child, or -1 in case of error; store status through argument pointer OURSTATUS. */ static int -handle_load_dll (PTR dummy ATTRIBUTE_UNUSED) +handle_load_dll (void *dummy ATTRIBUTE_UNUSED) { LOAD_DLL_DEBUG_INFO *event = ¤t_event.u.LoadDll; DWORD dll_name_ptr; @@ -1228,7 +1228,7 @@ child_stop (void) int child_xfer_memory (CORE_ADDR memaddr, char *our, int len, - int write, struct mem_attrib *mem ATTRIBUTE_UNUSED, + int write, struct mem_attrib *mem ATTRIBUTE_UNUSED, struct target_ops *target ATTRIBUTE_UNUSED) { DWORD done; @@ -1489,7 +1489,7 @@ typedef struct map_code_section_args; static void -map_single_dll_code_section (bfd * abfd, asection * sect, PTR obj) +map_single_dll_code_section (bfd * abfd, asection * sect, void *obj) { int old; int update_coreops; @@ -1554,14 +1554,14 @@ dll_code_sections_add (const char *dll_name, int base_addr, struct target_ops *t map_args.target = target; map_args.addr = base_addr - bfd_section_vma (dll_bfd, lowest_sect); - bfd_map_over_sections (dll_bfd, &map_single_dll_code_section, (PTR) (&map_args)); + bfd_map_over_sections (dll_bfd, &map_single_dll_code_section, (void *) (&map_args)); } return 1; } static void -core_section_load_dll_symbols (bfd * abfd, asection * sect, PTR obj) +core_section_load_dll_symbols (bfd * abfd, asection * sect, void *obj) { struct target_ops *target = (struct target_ops *) obj; diff --git a/gdb/windows-nat.c b/gdb/windows-nat.c index 3e24711..1eeaf01 100644 --- a/gdb/windows-nat.c +++ b/gdb/windows-nat.c @@ -514,7 +514,7 @@ register_loaded_dll (const char *name, DWORD load_addr) /* Wait for child to do something. Return pid of child, or -1 in case of error; store status through argument pointer OURSTATUS. */ static int -handle_load_dll (PTR dummy ATTRIBUTE_UNUSED) +handle_load_dll (void *dummy ATTRIBUTE_UNUSED) { LOAD_DLL_DEBUG_INFO *event = ¤t_event.u.LoadDll; DWORD dll_name_ptr; @@ -1228,7 +1228,7 @@ child_stop (void) int child_xfer_memory (CORE_ADDR memaddr, char *our, int len, - int write, struct mem_attrib *mem ATTRIBUTE_UNUSED, + int write, struct mem_attrib *mem ATTRIBUTE_UNUSED, struct target_ops *target ATTRIBUTE_UNUSED) { DWORD done; @@ -1489,7 +1489,7 @@ typedef struct map_code_section_args; static void -map_single_dll_code_section (bfd * abfd, asection * sect, PTR obj) +map_single_dll_code_section (bfd * abfd, asection * sect, void *obj) { int old; int update_coreops; @@ -1554,14 +1554,14 @@ dll_code_sections_add (const char *dll_name, int base_addr, struct target_ops *t map_args.target = target; map_args.addr = base_addr - bfd_section_vma (dll_bfd, lowest_sect); - bfd_map_over_sections (dll_bfd, &map_single_dll_code_section, (PTR) (&map_args)); + bfd_map_over_sections (dll_bfd, &map_single_dll_code_section, (void *) (&map_args)); } return 1; } static void -core_section_load_dll_symbols (bfd * abfd, asection * sect, PTR obj) +core_section_load_dll_symbols (bfd * abfd, asection * sect, void *obj) { struct target_ops *target = (struct target_ops *) obj; |