openldap/libraries/liblutil/signal.c

34 lines
631 B
C
Raw Normal View History

/* $OpenLDAP$ */
/*
2002-01-05 05:17:25 +08:00
* Copyright 2000-2002 The OpenLDAP Foundation
* COPYING RESTRICTIONS APPLY. See COPYRIGHT File in top level directory
* of this package for details.
*/
#include "portable.h"
#ifdef HAVE_SIGACTION
2000-08-22 00:48:11 +08:00
#include <ac/string.h>
#include <ac/signal.h>
lutil_sig_t
lutil_sigaction(int sig, lutil_sig_t func)
{
struct sigaction action, oaction;
memset( &action, '\0', sizeof(action) );
action.sa_handler = func;
sigemptyset( &action.sa_mask );
#ifdef SA_RESTART
action.sa_flags |= SA_RESTART;
#endif
if( sigaction( sig, &action, &oaction ) != 0 ) {
return NULL;
}
return oaction.sa_handler;
}
#endif