Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYaakov Selkowitz <yselkowi@redhat.com>2012-12-06 12:32:58 +0400
committerYaakov Selkowitz <yselkowi@redhat.com>2012-12-06 12:32:58 +0400
commit0ba7e5d36b8a16d752a10df400e9a226a6c9c2a2 (patch)
treed8a7870a8839d9ed00f3c15798e67fe6c93427d1 /winsup/cygwin
parent497826e97ab573279383611f74942020daae8e98 (diff)
* include/cygwin/wait.h (WAIT_ANY): Define.
(WAIT_MYPGRP): Define.
Diffstat (limited to 'winsup/cygwin')
-rw-r--r--winsup/cygwin/ChangeLog5
-rw-r--r--winsup/cygwin/include/cygwin/wait.h3
2 files changed, 8 insertions, 0 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index 197181d00..e9d6b261c 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,3 +1,8 @@
+2012-12-06 Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
+
+ * include/cygwin/wait.h (WAIT_ANY): Define.
+ (WAIT_MYPGRP): Define.
+
2012-12-05 Corinna Vinschen <corinna@vinschen.de>
* child_info.h (class child_info_spawn): Drop unused member lock.
diff --git a/winsup/cygwin/include/cygwin/wait.h b/winsup/cygwin/include/cygwin/wait.h
index 0f3f76365..076d88386 100644
--- a/winsup/cygwin/include/cygwin/wait.h
+++ b/winsup/cygwin/include/cygwin/wait.h
@@ -11,6 +11,9 @@ details. */
#ifndef _CYGWIN_WAIT_H
#define _CYGWIN_WAIT_H
+#define WAIT_ANY (pid_t)-1
+#define WAIT_MYPGRP (pid_t)0
+
#define WNOHANG 1
#define WUNTRACED 2
#define WCONTINUED 8