openldap/include/ac/signal.h

81 lines
1.9 KiB
C
Raw Normal View History

1998-10-25 09:41:42 +08:00
/* Generic signal.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/>.
*
2018-03-22 23:35:24 +08:00
* Copyright 1998-2018 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_SIGNAL_H
#define _AC_SIGNAL_H
#include <signal.h>
#undef SIGNAL
#if defined( HAVE_SIGACTION )
#define SIGNAL lutil_sigaction
typedef void (*lutil_sig_t)(int);
2000-07-25 07:59:25 +08:00
LDAP_LUTIL_F(lutil_sig_t) lutil_sigaction( int sig, lutil_sig_t func );
#define SIGNAL_REINSTALL(sig,act) (void)0
#elif defined( HAVE_SIGSET )
1998-10-25 09:41:42 +08:00
#define SIGNAL sigset
#define SIGNAL_REINSTALL sigset
1998-10-25 09:41:42 +08:00
#else
#define SIGNAL signal
#define SIGNAL_REINSTALL signal
1998-10-25 09:41:42 +08:00
#endif
#if !defined( LDAP_SIGUSR1 ) || !defined( LDAP_SIGUSR2 )
#undef LDAP_SIGUSR1
#undef LDAP_SIGUSR2
# if defined(WINNT) || defined(_WINNT) || defined(_WIN32)
1999-10-28 15:27:00 +08:00
# define LDAP_SIGUSR1 SIGILL
# define LDAP_SIGUSR2 SIGTERM
# elif !defined(HAVE_LINUX_THREADS)
# define LDAP_SIGUSR1 SIGUSR1
# define LDAP_SIGUSR2 SIGUSR2
# else
/*
2000-06-24 08:46:07 +08:00
* Some versions of LinuxThreads unfortunately uses the only
* two signals reserved for user applications. This forces
* OpenLDAP to use other signals reserved for other uses.
*/
# if defined( SIGSTKFLT )
# define LDAP_SIGUSR1 SIGSTKFLT
# elif defined ( SIGSYS )
# define LDAP_SIGUSR1 SIGSYS
# endif
1998-11-22 18:26:51 +08:00
# if defined( SIGUNUSED )
# define LDAP_SIGUSR2 SIGUNUSED
# elif defined ( SIGINFO )
# define LDAP_SIGUSR2 SIGINFO
# elif defined ( SIGEMT )
# define LDAP_SIGUSR2 SIGEMT
# endif
# endif
#endif
#ifndef LDAP_SIGCHLD
#ifdef SIGCHLD
#define LDAP_SIGCHLD SIGCHLD
#elif SIGCLD
#define LDAP_SIGCHLD SIGCLD
#endif
#endif
1998-10-25 09:41:42 +08:00
#endif /* _AC_SIGNAL_H */