aboutsummaryrefslogtreecommitdiff
path: root/gdb/procfs.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2000-04-07 04:33:21 +0000
committerAndrew Cagney <cagney@redhat.com>2000-04-07 04:33:21 +0000
commitd311cd50fc8c3fc9b344cc2a893572d6c0ae44d7 (patch)
tree5c0a7a0c680ec499b2322de91b2554b74f2e7e4f /gdb/procfs.c
parent279b54a1193dd058598432bfb81bc93eb3297266 (diff)
downloadgdb-d311cd50fc8c3fc9b344cc2a893572d6c0ae44d7.zip
gdb-d311cd50fc8c3fc9b344cc2a893572d6c0ae44d7.tar.gz
gdb-d311cd50fc8c3fc9b344cc2a893572d6c0ae44d7.tar.bz2
From 2000-03-27 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>:
* procfs.c (init_procfs_ops): Set procfs_ops.to_has_memory and procfs_ops.to_has_all_memory to 1.
Diffstat (limited to 'gdb/procfs.c')
-rw-r--r--gdb/procfs.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/procfs.c b/gdb/procfs.c
index fbb3009..f385e94 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;