* 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.
This commit is contained in:
Pedro Alves 2009-05-21 22:53:29 +00:00
parent 8914d83b2f
commit 61439e34f1
3 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,9 @@
2009-05-21 Pedro Alves <pedro@codesourcery.com>
* 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.
2009-05-21 Joel Brobecker <brobecker@adacore.com>
* aix-thread.c (aix_thread_wait): Add options parameter. Use it

View File

@ -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. */

View File

@ -695,7 +695,7 @@ gdb_cntrl_c (int signo)
static ptid_t
m32r_wait (struct target_ops *ops,
ptid_t ptid, struct target_waitstatus *status)
ptid_t ptid, struct target_waitstatus *status, int options)
{
static RETSIGTYPE (*prev_sigint) ();
unsigned long bp_addr, pc_addr;