From: Pierre Muller Date: Mon, 25 May 2009 12:28:57 +0000 (+0000) Subject: * procfs.c (procfs_wait): Add options parameter. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4fcbb49441482939590580ccbf67f0a1b9c8024c;p=binutils-gdb.git * procfs.c (procfs_wait): Add options parameter. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index b0652aad788..70951eac57b 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2009-05-25 Pierre Muller + + * procfs.c (procfs_wait): Add options parameter. + 2009-05-24 Doug Evans Global renaming of find_thread_pid to find_thread_ptid. diff --git a/gdb/procfs.c b/gdb/procfs.c index 96999014312..ad7daf9af65 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;