summaryrefslogtreecommitdiff
path: root/PACE/pace/win32/wait.h
diff options
context:
space:
mode:
Diffstat (limited to 'PACE/pace/win32/wait.h')
-rw-r--r--PACE/pace/win32/wait.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/PACE/pace/win32/wait.h b/PACE/pace/win32/wait.h
new file mode 100644
index 00000000000..551bd87698f
--- /dev/null
+++ b/PACE/pace/win32/wait.h
@@ -0,0 +1,39 @@
+/* $Id$
+
+ * ============================================================================
+ *
+ * = LIBRARY
+ * pace
+ *
+ * = FILENAME
+ * pace/posix/wait.h
+ *
+ * = AUTHOR
+ * Luther Baker
+ *
+ * ============================================================================ */
+
+#ifndef PACE_WAIT_H
+#define PACE_WAIT_H
+
+#include "pace/sys/types.h"
+
+#if defined (PACE_HAS_CPLUSPLUS)
+extern "C" {
+#endif /* PACE_HAS_CPLUSPLUS */
+
+ PACE_INLINE pid_t pace_wait (int * statloc);
+
+ PACE_INLINE pid_t pace_waitpid (pid_t pid,
+ int * statloc,
+ int options);
+
+#if defined (PACE_HAS_CPLUSPLUS)
+}
+#endif /* PACE_HAS_CPLUSPLUS */
+
+#if defined (PACE_HAS_INLINE)
+# include "pace/posix/wait.inl"
+#endif /* PACE_HAS_INLINE */
+
+#endif /* PACE_WAIT_H */