diff options
author | Mark Kettenis <kettenis@gnu.org> | 2005-11-21 09:11:44 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2005-11-21 09:11:44 +0000 |
commit | b457b3dd73986fa2289adecf6ebd4a1a0545ab34 (patch) | |
tree | b14ad13057c689e833bbeeb15c4fb25db7dd260e /gdb/inf-ptrace.c | |
parent | 5e1f64305e028cd9fd7c8b5befb9d11934845cb8 (diff) | |
download | gdb-b457b3dd73986fa2289adecf6ebd4a1a0545ab34.zip gdb-b457b3dd73986fa2289adecf6ebd4a1a0545ab34.tar.gz gdb-b457b3dd73986fa2289adecf6ebd4a1a0545ab34.tar.bz2 |
* inf-ptrace.c (inf_ptrace_xfer_partial): Use PIOD_WRITE_I instead
of PIOD_WRITE_D.
Diffstat (limited to 'gdb/inf-ptrace.c')
-rw-r--r-- | gdb/inf-ptrace.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/gdb/inf-ptrace.c b/gdb/inf-ptrace.c index d12d1ad..f3c399e 100644 --- a/gdb/inf-ptrace.c +++ b/gdb/inf-ptrace.c @@ -462,8 +462,12 @@ inf_ptrace_xfer_partial (struct target_ops *ops, enum target_object object, struct ptrace_io_desc piod; /* NOTE: We assume that there are no distinct address spaces - for instruction and data. */ - piod.piod_op = writebuf ? PIOD_WRITE_D : PIOD_READ_D; + for instruction and data. However, on OpenBSD 3.9 and + later, PIOD_WRITE_D doesn't allow changing memory that's + mapped read-only. Since most code segments will be + read-only, using PIOD_WRITE_D will prevent us from + inserting breakpoints, so we use PIOD_WRITE_I instead. */ + piod.piod_op = writebuf ? PIOD_WRITE_I : PIOD_READ_D; piod.piod_addr = writebuf ? (void *) writebuf : readbuf; piod.piod_offs = (void *) (long) offset; piod.piod_len = len; |