From: Andrew Cagney Date: Fri, 7 Apr 2000 04:33:21 +0000 (+0000) Subject: From 2000-03-27 Peter Schauer : X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d311cd50fc8c3fc9b344cc2a893572d6c0ae44d7;p=binutils-gdb.git From 2000-03-27 Peter Schauer : * procfs.c (init_procfs_ops): Set procfs_ops.to_has_memory and procfs_ops.to_has_all_memory to 1. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index d8b60e73007..88392a9095a 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,11 @@ +Fri Apr 7 13:33:43 2000 Andrew Cagney + + From 2000-03-27 Peter Schauer : + * procfs.c (init_procfs_ops): Set procfs_ops.to_has_memory and + procfs_ops.to_has_all_memory to 1. + + * TODO: Update + 2000-04-06 Nick Duffek * configure.in (_MSE_INT_H): Define on Solaris 7. diff --git a/gdb/TODO b/gdb/TODO index c5c8d0fc210..b03a689f1df 100644 --- a/gdb/TODO +++ b/gdb/TODO @@ -28,24 +28,6 @@ release of GDB. -- -Solaris/x86 - which? (Nick Duffek, Peter Schauer, Michael Snyder?) - -Nick D's working through patches from Michael Snyder and Peter S. - --- - - -RFA: procfs.c: init_procfs_ops should set -procfs_ops.to_has_[all]_memory (Peter Schauer, Andrew Cagney?) - -I am pretty sure that this is caused by some accidental deletion, but -procfs.c:init_procfs_ops no longer sets procfs_ops.to_has_memory and -procfs_ops.to_has_all_memory. - -http://sourceware.cygnus.com/ml/gdb-patches/2000-q1/msg01057.html - --- - GDB 5.0: Nice to have --------------------- diff --git a/gdb/procfs.c b/gdb/procfs.c index fbb3009af9a..f385e941b2b 100644 --- a/gdb/procfs.c +++ b/gdb/procfs.c @@ -154,6 +154,8 @@ init_procfs_ops () procfs_ops.to_thread_alive = procfs_thread_alive; procfs_ops.to_pid_to_str = procfs_pid_to_str; + procfs_ops.to_has_all_memory = 1; + procfs_ops.to_has_memory = 1; procfs_ops.to_has_execution = 1; procfs_ops.to_has_stack = 1; procfs_ops.to_has_registers = 1;