* aix-thread.c (aix_thread_wait): Add options parameter. Use it
to call the to_wait method in the target_beneath.
This commit is contained in:
parent
c344f84568
commit
8914d83b2f
@ -1,3 +1,8 @@
|
|||||||
|
2009-05-21 Joel Brobecker <brobecker@adacore.com>
|
||||||
|
|
||||||
|
* aix-thread.c (aix_thread_wait): Add options parameter. Use it
|
||||||
|
to call the to_wait method in the target_beneath.
|
||||||
|
|
||||||
2009-05-21 Pedro Alves <pedro@codesourcery.com>
|
2009-05-21 Pedro Alves <pedro@codesourcery.com>
|
||||||
|
|
||||||
* linux-nat.c (linux_nat_terminal_inferior)
|
* linux-nat.c (linux_nat_terminal_inferior)
|
||||||
|
@ -1012,7 +1012,7 @@ aix_thread_resume (struct target_ops *ops,
|
|||||||
|
|
||||||
static ptid_t
|
static ptid_t
|
||||||
aix_thread_wait (struct target_ops *ops,
|
aix_thread_wait (struct target_ops *ops,
|
||||||
ptid_t ptid, struct target_waitstatus *status)
|
ptid_t ptid, struct target_waitstatus *status, int options)
|
||||||
{
|
{
|
||||||
struct cleanup *cleanup = save_inferior_ptid ();
|
struct cleanup *cleanup = save_inferior_ptid ();
|
||||||
struct target_ops *beneath = find_target_beneath (ops);
|
struct target_ops *beneath = find_target_beneath (ops);
|
||||||
@ -1020,7 +1020,7 @@ aix_thread_wait (struct target_ops *ops,
|
|||||||
pid_to_prc (&ptid);
|
pid_to_prc (&ptid);
|
||||||
|
|
||||||
inferior_ptid = pid_to_ptid (PIDGET (inferior_ptid));
|
inferior_ptid = pid_to_ptid (PIDGET (inferior_ptid));
|
||||||
ptid = beneath->to_wait (beneath, ptid, status);
|
ptid = beneath->to_wait (beneath, ptid, status, options);
|
||||||
do_cleanups (cleanup);
|
do_cleanups (cleanup);
|
||||||
|
|
||||||
if (PIDGET (ptid) == -1)
|
if (PIDGET (ptid) == -1)
|
||||||
|
Loading…
Reference in New Issue
Block a user