openldap/include/ac/wait.h

57 lines
1.4 KiB
C
Raw Normal View History

1998-10-25 09:41:42 +08:00
/* Generic wait.h */
1999-08-30 16:08:00 +08:00
/* $OpenLDAP$ */
2003-11-26 12:16:36 +08:00
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
*
2020-01-10 00:50:21 +08:00
* Copyright 1998-2020 The OpenLDAP Foundation.
1998-12-29 03:51:35 +08:00
* All rights reserved.
*
2001-05-29 11:35:56 +08:00
* Redistribution and use in source and binary forms, with or without
* modification, are permitted only as authorized by the OpenLDAP
2003-11-26 07:17:08 +08:00
* Public License.
*
* A copy of this license is available in file LICENSE in the
* top-level directory of the distribution or, alternatively, at
* <http://www.OpenLDAP.org/license.html>.
1998-12-29 03:51:35 +08:00
*/
1998-10-25 09:41:42 +08:00
#ifndef _AC_WAIT_H
#define _AC_WAIT_H
#include <sys/types.h>
#ifdef HAVE_SYS_WAIT_H
1998-10-25 09:41:42 +08:00
# 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
1998-10-25 09:41:42 +08:00
#ifndef WEXITSTATUS
# define WEXITSTATUS(s) LDAP_HI(s)
1998-10-25 09:41:42 +08:00
#endif
#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)
1998-10-25 09:41:42 +08:00
#endif
#ifdef WCONTINUED
# define WAIT_FLAGS ( WNOHANG | WUNTRACED | WCONTINUED )
#else
# define WAIT_FLAGS ( WNOHANG | WUNTRACED )
#endif
#endif /* _AC_WAIT_H */