21 lines
842 B
Plaintext
21 lines
842 B
Plaintext
--- src/engine.c.orig Fri Dec 28 19:15:26 2007
|
|
+++ src/engine.c Wed Sep 16 18:19:06 2009
|
|
@@ -210,7 +210,7 @@ evaluateTriggers (Display* d)
|
|
#else /* VMS */
|
|
if (lockerPid)
|
|
{
|
|
-#if !defined (UTEKV) && !defined (SYSV) && !defined (SVR4)
|
|
+#if !defined (UTEKV) && !defined (SYSV) && !defined (SVR4) && !defined(__OpenBSD__)
|
|
union wait status; /* childs process status */
|
|
#else /* !UTEKV && !SYSV && !SVR4 */
|
|
int status = 0; /* childs process status */
|
|
@@ -221,7 +221,7 @@ evaluateTriggers (Display* d)
|
|
(void) kill (lockerPid, SIGTERM);
|
|
}
|
|
|
|
-#if !defined (UTEKV) && !defined (SYSV) && !defined (SVR4)
|
|
+#if !defined (UTEKV) && !defined (SYSV) && !defined (SVR4) && !defined(__OpenBSD__)
|
|
if (wait3 (&status, WNOHANG, 0))
|
|
#else /* !UTEKV && !SYSV && !SVR4 */
|
|
if (waitpid (-1, &status, WNOHANG))
|