diff options
author | Ian Lance Taylor <ian@airs.com> | 1995-07-17 17:09:48 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1995-07-17 17:09:48 +0000 |
commit | 5d672f28973ceaed88fb58ddf75f0a8e8149e09b (patch) | |
tree | a688223ba87b519788d37338a1ac062dcee8517a /gdb | |
parent | 31ce436075a725ee05c36742fe854f016f3c7d5e (diff) | |
download | gdb-5d672f28973ceaed88fb58ddf75f0a8e8149e09b.zip gdb-5d672f28973ceaed88fb58ddf75f0a8e8149e09b.tar.gz gdb-5d672f28973ceaed88fb58ddf75f0a8e8149e09b.tar.bz2 |
* remote-vx.c (vx_ops, vx_run_ops): Initialize new to_thread_alive
field.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/remote-vx.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 8c59298..58998fa 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +Mon Jul 17 13:08:00 1995 Ian Lance Taylor <ian@cygnus.com> + + * remote-vx.c (vx_ops, vx_run_ops): Initialize new to_thread_alive + field. + Sat Jul 15 01:02:53 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) * config/alpha/alpha-osf3.mh, config/alpha/nm-osf3.h: New files @@ -56,7 +61,6 @@ Thu Jul 13 13:42:38 1995 Jeffrey A. Law <law@rtl.cygnus.com> * remote-sim.c (gdbsim_ops): Likewise. * sparcl-tdep.c (sparclite_ops): Likewise. - Tue Jul 11 11:15:55 1995 Kung Hsu <kung@rtl.cygnus.com> * solib.c: Add _DYNAMIC__MGC base symbol for Mentor Graphics Inc. diff --git a/gdb/remote-vx.c b/gdb/remote-vx.c index 4e142c7..f999bf9 100644 --- a/gdb/remote-vx.c +++ b/gdb/remote-vx.c @@ -1437,6 +1437,7 @@ Specify the name of the machine to connect to.", vx_create_inferior, 0, /* mourn_inferior */ 0, /* can_run */ 0, /* notice_signals */ + 0, /* thread_alive */ 0, /* to_stop */ core_stratum, 0, /* next */ 1, 1, 0, 0, 0, /* all mem, mem, stack, regs, exec */ @@ -1462,6 +1463,7 @@ struct target_ops vx_run_ops = { 0, vx_mourn_inferior, 0, /* can_run */ 0, /* notice_signals */ + 0, /* thread_alive */ 0, /* to_stop */ process_stratum, 0, /* next */ 0, /* all_mem--off to avoid spurious msg in "i files" */ |