From 61439e34f1e5be7a27ac4293b29513a4cf20ca37 Mon Sep 17 00:00:00 2001 From: Pedro Alves Date: Thu, 21 May 2009 22:53:29 +0000 Subject: * dec-thread.c (dec_thread_wait): Add options parameter. Use it to call the to_wait method in the target beneath. * remote-m32r-sdi.c (m32r_wait): Add options parameter. --- gdb/dec-thread.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gdb/dec-thread.c') diff --git a/gdb/dec-thread.c b/gdb/dec-thread.c index aa40c59..0fa950f 100644 --- a/gdb/dec-thread.c +++ b/gdb/dec-thread.c @@ -452,14 +452,14 @@ get_active_ptid (void) static ptid_t dec_thread_wait (struct target_ops *ops, - ptid_t ptid, struct target_waitstatus *status) + ptid_t ptid, struct target_waitstatus *status, int options) { ptid_t active_ptid; struct target_ops *beneath = find_target_beneath (ops); debug ("dec_thread_wait"); - ptid = beneath->to_wait (beneath, ptid, status); + ptid = beneath->to_wait (beneath, ptid, status, options); /* The ptid returned by the target beneath us is the ptid of the process. We need to find which thread is currently active and return its ptid. */ -- cgit v1.1