diff options
author | Pierre Muller <muller@sourceware.org> | 2009-05-25 12:28:57 +0000 |
---|---|---|
committer | Pierre Muller <muller@sourceware.org> | 2009-05-25 12:28:57 +0000 |
commit | 4fcbb49441482939590580ccbf67f0a1b9c8024c (patch) | |
tree | aa14220d3ade62bc565ff2d17b66b6554f10b6e5 /gdb/procfs.c | |
parent | 8dbc6e74e9fba645341a1b0aee4e6cd9367ea233 (diff) | |
download | binutils-4fcbb49441482939590580ccbf67f0a1b9c8024c.zip binutils-4fcbb49441482939590580ccbf67f0a1b9c8024c.tar.gz binutils-4fcbb49441482939590580ccbf67f0a1b9c8024c.tar.bz2 |
* procfs.c (procfs_wait): Add options parameter.
Diffstat (limited to 'gdb/procfs.c')
-rw-r--r-- | gdb/procfs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/procfs.c b/gdb/procfs.c index 9699901..ad7daf9 100644 --- a/gdb/procfs.c +++ b/gdb/procfs.c @@ -128,7 +128,7 @@ static void procfs_mourn_inferior (struct target_ops *ops); static void procfs_create_inferior (struct target_ops *, char *, char *, char **, int); static ptid_t procfs_wait (struct target_ops *, - ptid_t, struct target_waitstatus *); + ptid_t, struct target_waitstatus *, int); static int procfs_xfer_memory (CORE_ADDR, gdb_byte *, int, int, struct mem_attrib *attrib, struct target_ops *); @@ -3947,7 +3947,7 @@ syscall_is_lwp_create (procinfo *pi, int scall) static ptid_t procfs_wait (struct target_ops *ops, - ptid_t ptid, struct target_waitstatus *status) + ptid_t ptid, struct target_waitstatus *status, int options) { /* First cut: loosely based on original version 2.1 */ procinfo *pi; |