]> git.sur5r.net Git - openldap/blobdiff - include/ac/wait.h
Added dnPretty2/dnNormalize2 using preallocated destination berval
[openldap] / include / ac / wait.h
index af2eb5b18a18488dfc97548fdd7af32c568304e1..1f98ff7880c9524aa4cf8a0033cffa6798a03528 100644 (file)
@@ -1,4 +1,15 @@
 /* Generic wait.h */
+/* $OpenLDAP$ */
+/*
+ * Copyright 1998-2001 The OpenLDAP Foundation, Redwood City, California, USA
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted only as authorized by the OpenLDAP
+ * Public License.  A copy of this license is available at
+ * http://www.OpenLDAP.org/license.html or in file LICENSE in the
+ * top-level directory of the distribution.
+ */
 
 #ifndef _AC_WAIT_H
 #define _AC_WAIT_H
 # include <sys/wait.h>
 #endif
 
+#define LDAP_HI(s)     (((s) >> 8) & 0377)
+#define LDAP_LO(s)     ((s) & 0377)
+
+/* These should work on non-POSIX UNIX platforms,
+       all bets on off on non-POSIX non-UNIX platforms... */
+#ifndef WIFEXITED
+# define WIFEXITED(s)  (LDAP_LO(s) == 0)
+#endif
 #ifndef WEXITSTATUS
-# define WEXITSTATUS(stat_val) ((unsigned)(stat_val) >> 8)
+# define WEXITSTATUS(s) LDAP_HI(s)
 #endif
-#ifndef WIFEXITED
-# define WIFEXITED(stat_val) (((stat_val) & 255) == 0)
+#ifndef WIFSIGNALED
+# define WIFSIGNALED(s) (LDAP_LO(s) > 0 && LDAP_HI(s) == 0)
+#endif
+#ifndef WTERMSIG
+# define WTERMSIG(s)   (LDAP_LO(s) & 0177)
+#endif
+#ifndef WIFSTOPPED
+# define WIFSTOPPED(s) (LDAP_LO(s) == 0177 && LDAP_HI(s) != 0)
+#endif
+#ifndef WSTOPSIG
+# define WSTOPSIG(s)   LDAP_HI(s)
 #endif
 
 #ifdef WCONTINUED