2000-02-18 03:38:33 +08:00
|
|
|
/* wait.cc: Posix wait routines.
|
|
|
|
|
2013-01-21 12:38:31 +08:00
|
|
|
Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2008,
|
|
|
|
2009, 2011, 2012 Red Hat, Inc.
|
2000-02-18 03:38:33 +08:00
|
|
|
|
|
|
|
This file is part of Cygwin.
|
|
|
|
|
|
|
|
This software is a copyrighted work licensed under the terms of the
|
|
|
|
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
|
|
details. */
|
|
|
|
|
2000-08-03 00:28:18 +08:00
|
|
|
#include "winsup.h"
|
2000-02-18 03:38:33 +08:00
|
|
|
#include <sys/wait.h>
|
2000-08-22 13:10:20 +08:00
|
|
|
#include "sigproc.h"
|
2003-01-15 04:13:09 +08:00
|
|
|
#include "thread.h"
|
2004-02-12 11:01:58 +08:00
|
|
|
#include "cygtls.h"
|
2012-06-18 04:50:24 +08:00
|
|
|
#include "cygwait.h"
|
2000-02-18 03:38:33 +08:00
|
|
|
|
|
|
|
/* This is called _wait and not wait because the real wait is defined
|
|
|
|
in libc/syscalls/syswait.c. It calls us. */
|
|
|
|
|
2003-03-10 04:10:25 +08:00
|
|
|
extern "C" pid_t
|
2002-10-21 09:00:58 +08:00
|
|
|
wait (int *status)
|
2000-02-18 03:38:33 +08:00
|
|
|
{
|
|
|
|
return wait4 (-1, status, 0, NULL);
|
|
|
|
}
|
|
|
|
|
2003-03-10 04:10:25 +08:00
|
|
|
extern "C" pid_t
|
2000-02-18 03:38:33 +08:00
|
|
|
waitpid (pid_t intpid, int *status, int options)
|
|
|
|
{
|
|
|
|
return wait4 (intpid, status, options, NULL);
|
|
|
|
}
|
|
|
|
|
2003-03-10 04:10:25 +08:00
|
|
|
extern "C" pid_t
|
2000-02-18 03:38:33 +08:00
|
|
|
wait3 (int *status, int options, struct rusage *r)
|
|
|
|
{
|
|
|
|
return wait4 (-1, status, options, r);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Wait for any child to complete.
|
|
|
|
* Note: this is not thread safe. Use of wait in multiple threads will
|
|
|
|
* not work correctly.
|
|
|
|
*/
|
|
|
|
|
2003-03-10 04:10:25 +08:00
|
|
|
extern "C" pid_t
|
2000-02-18 03:38:33 +08:00
|
|
|
wait4 (int intpid, int *status, int options, struct rusage *r)
|
|
|
|
{
|
2001-01-16 10:29:47 +08:00
|
|
|
int res;
|
2000-02-18 03:38:33 +08:00
|
|
|
HANDLE waitfor;
|
2004-03-13 06:03:33 +08:00
|
|
|
waitq *w = &_my_tls.wq;
|
2000-02-18 03:38:33 +08:00
|
|
|
|
2003-01-15 04:13:09 +08:00
|
|
|
pthread_testcancel ();
|
|
|
|
|
2001-04-01 08:06:17 +08:00
|
|
|
while (1)
|
2000-02-18 03:38:33 +08:00
|
|
|
{
|
2003-08-19 12:10:42 +08:00
|
|
|
sig_dispatch_pending ();
|
2009-07-19 04:25:07 +08:00
|
|
|
if (options & ~(WNOHANG | WUNTRACED | WCONTINUED))
|
2001-04-01 08:06:17 +08:00
|
|
|
{
|
|
|
|
set_errno (EINVAL);
|
2004-03-13 06:03:33 +08:00
|
|
|
res = -1;
|
|
|
|
break;
|
2001-04-01 08:06:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (r)
|
|
|
|
memset (r, 0, sizeof (*r));
|
|
|
|
|
|
|
|
w->pid = intpid;
|
|
|
|
w->options = options;
|
|
|
|
w->rusage = r;
|
|
|
|
sigproc_printf ("calling proc_subproc, pid %d, options %d",
|
2004-03-04 13:31:14 +08:00
|
|
|
w->pid, w->options);
|
2013-04-23 17:44:36 +08:00
|
|
|
if (!proc_subproc (PROC_WAIT, (uintptr_t) w))
|
2001-04-01 08:06:17 +08:00
|
|
|
{
|
|
|
|
set_errno (ENOSYS);
|
|
|
|
paranoid_printf ("proc_subproc returned 0");
|
|
|
|
res = -1;
|
2004-03-13 06:03:33 +08:00
|
|
|
break;
|
2001-04-01 08:06:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if ((waitfor = w->ev) == NULL)
|
|
|
|
goto nochildren;
|
|
|
|
|
2012-08-16 03:07:42 +08:00
|
|
|
res = cygwait (waitfor, cw_infinite, cw_cancel | cw_cancel_self);
|
2001-04-01 08:06:17 +08:00
|
|
|
|
2012-08-16 03:07:42 +08:00
|
|
|
sigproc_printf ("%d = cygwait (...)", res);
|
2001-04-01 08:06:17 +08:00
|
|
|
|
|
|
|
if (w->ev == NULL)
|
|
|
|
{
|
|
|
|
nochildren:
|
|
|
|
/* found no children */
|
|
|
|
set_errno (ECHILD);
|
|
|
|
res = -1;
|
2004-03-13 06:03:33 +08:00
|
|
|
break;
|
2001-04-01 08:06:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (w->status == -1)
|
|
|
|
{
|
2004-03-13 06:03:33 +08:00
|
|
|
if (_my_tls.call_signal_handler ())
|
|
|
|
continue;
|
2001-04-01 08:06:17 +08:00
|
|
|
set_sig_errno (EINTR);
|
|
|
|
res = -1;
|
|
|
|
}
|
|
|
|
else if (res != WAIT_OBJECT_0)
|
|
|
|
{
|
|
|
|
set_errno (EINVAL);
|
|
|
|
res = -1;
|
|
|
|
}
|
|
|
|
else if ((res = w->pid) != 0 && status)
|
|
|
|
*status = w->status;
|
2004-03-13 06:03:33 +08:00
|
|
|
break;
|
2000-02-18 03:38:33 +08:00
|
|
|
}
|
|
|
|
|
2013-04-23 17:44:36 +08:00
|
|
|
syscall_printf ("%R = wait4(%d, %y, %d, %p)", res, intpid, w->status, options, r);
|
2000-02-18 03:38:33 +08:00
|
|
|
w->status = -1;
|
2001-01-16 10:29:47 +08:00
|
|
|
return res;
|
2000-02-18 03:38:33 +08:00
|
|
|
}
|