aboutsummaryrefslogtreecommitdiff
path: root/gdb/windows-nat.c
diff options
context:
space:
mode:
authorChristopher Faylor <me+cygwin@cgf.cx>2006-04-10 21:43:45 +0000
committerChristopher Faylor <me+cygwin@cgf.cx>2006-04-10 21:43:45 +0000
commit02c5aecd1ee5a4262aeeb4c489e3352fe6a142ae (patch)
treed7185248e341fe50990035eef69b4b3c82c29ef2 /gdb/windows-nat.c
parente78efa90d6d732094fa9b5205ac4be728a697540 (diff)
downloadgdb-02c5aecd1ee5a4262aeeb4c489e3352fe6a142ae.zip
gdb-02c5aecd1ee5a4262aeeb4c489e3352fe6a142ae.tar.gz
gdb-02c5aecd1ee5a4262aeeb4c489e3352fe6a142ae.tar.bz2
* win32-nat.c (open_symbol_file_object): New function.
(in_dynsym_resolve_code): Ditto. (init_win32_ops): Fill in fields which ought not to be NULL.
Diffstat (limited to 'gdb/windows-nat.c')
-rw-r--r--gdb/windows-nat.c16
1 files changed, 14 insertions, 2 deletions
diff --git a/gdb/windows-nat.c b/gdb/windows-nat.c
index cbafa96..abbf4a3 100644
--- a/gdb/windows-nat.c
+++ b/gdb/windows-nat.c
@@ -2345,6 +2345,18 @@ fetch_elf_core_registers (char *core_reg_sect,
regcache_raw_supply (current_regcache, r, core_reg_sect + mappings[r]);
}
+static int
+open_symbol_file_object (void *from_ttyp)
+{
+ return 0;
+}
+
+static int
+in_dynsym_resolve_code (CORE_ADDR pc)
+{
+ return 0;
+}
+
static void
init_win32_ops (void)
{
@@ -2392,8 +2404,8 @@ init_win32_ops (void)
win32_so_ops.solib_create_inferior_hook = win32_solib_create_inferior_hook;
win32_so_ops.special_symbol_handling = win32_special_symbol_handling;
win32_so_ops.current_sos = win32_current_sos;
- win32_so_ops.open_symbol_file_object = NULL;
- win32_so_ops.in_dynsym_resolve_code = NULL;
+ win32_so_ops.open_symbol_file_object = open_symbol_file_object;
+ win32_so_ops.in_dynsym_resolve_code = in_dynsym_resolve_code;
/* FIXME: Don't do this here. *_gdbarch_init() should set so_ops. */
current_target_so_ops = &win32_so_ops;