diff options
author | Andrew Cagney <cagney@redhat.com> | 2000-04-07 04:33:21 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2000-04-07 04:33:21 +0000 |
commit | 44dfb17c22f8928a77474dd320618eded568aca5 (patch) | |
tree | 3c228f8e1a47fd8ca915b3b071b53a67c3359462 /gdb/procfs.c | |
parent | bb4de8abfa5607632a3e21dbba35ccc3aec5c944 (diff) | |
download | gdb-44dfb17c22f8928a77474dd320618eded568aca5.tar.gz |
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.c | 2 |
1 files changed, 2 insertions, 0 deletions
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; |