aboutsummaryrefslogtreecommitdiff
path: root/gdb/win32-nat.c
diff options
context:
space:
mode:
authorDavid Carlton <carlton@bactrian.org>2002-11-15 19:19:28 +0000
committerDavid Carlton <carlton@bactrian.org>2002-11-15 19:19:28 +0000
commitfb8abdb0ebe68c5fb20228d81bebbf45782c052c (patch)
tree621da7c283d7d3bd0e9ca87bfdb53e5fcfcb72ac /gdb/win32-nat.c
parent1e04139942197a796f7ab9dadeeaac2e78a301d4 (diff)
downloadgdb-fb8abdb0ebe68c5fb20228d81bebbf45782c052c.zip
gdb-fb8abdb0ebe68c5fb20228d81bebbf45782c052c.tar.gz
gdb-fb8abdb0ebe68c5fb20228d81bebbf45782c052c.tar.bz2
2002-11-15 David Carlton <carlton@math.stanford.edu>
* Merge from mainline; tag is carlton_dictionary-20021115-merge.
Diffstat (limited to 'gdb/win32-nat.c')
-rw-r--r--gdb/win32-nat.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/gdb/win32-nat.c b/gdb/win32-nat.c
index e2a85e1..93bd108 100644
--- a/gdb/win32-nat.c
+++ b/gdb/win32-nat.c
@@ -383,7 +383,7 @@ static void
do_child_store_inferior_registers (int r)
{
if (r >= 0)
- read_register_gen (r, ((char *) &current_thread->context) + mappings[r]);
+ deprecated_read_register_gen (r, ((char *) &current_thread->context) + mappings[r]);
else
{
for (r = 0; r < NUM_REGS; r++)
@@ -1828,24 +1828,18 @@ init_child_ops (void)
child_ops.to_terminal_save_ours = terminal_save_ours;
child_ops.to_terminal_info = child_terminal_info;
child_ops.to_kill = child_kill_inferior;
- child_ops.to_load = 0;
- child_ops.to_lookup_symbol = 0;
child_ops.to_create_inferior = child_create_inferior;
child_ops.to_mourn_inferior = child_mourn_inferior;
child_ops.to_can_run = child_can_run;
- child_ops.to_notice_signals = 0;
child_ops.to_thread_alive = win32_child_thread_alive;
child_ops.to_pid_to_str = cygwin_pid_to_str;
child_ops.to_stop = child_stop;
child_ops.to_stratum = process_stratum;
- child_ops.DONT_USE = 0;
child_ops.to_has_all_memory = 1;
child_ops.to_has_memory = 1;
child_ops.to_has_stack = 1;
child_ops.to_has_registers = 1;
child_ops.to_has_execution = 1;
- child_ops.to_sections = 0;
- child_ops.to_sections_end = 0;
child_ops.to_magic = OPS_MAGIC;
}