2006-09-18 22:49:20 +00:00
# ifndef _system_wait_h
# define _system_wait_h
2003-07-29 20:11:18 +00:00
/*
Unix SMB / CIFS implementation .
2006-09-18 22:49:20 +00:00
waitpid system include wrappers
Copyright ( C ) Andrew Tridgell 2004
2007-06-02 09:10:08 +00:00
* * NOTE ! The following LGPL license applies to the replace
* * library . This does NOT imply that all of Samba is released
* * under the LGPL
2003-07-29 20:11:18 +00:00
2007-06-02 09:10:08 +00:00
This library is free software ; you can redistribute it and / or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation ; either
2007-07-10 01:44:42 +00:00
version 3 of the License , or ( at your option ) any later version .
2007-06-02 09:10:08 +00:00
This library is distributed in the hope that it will be useful ,
2003-07-29 20:11:18 +00:00
but WITHOUT ANY WARRANTY ; without even the implied warranty of
2007-06-02 09:10:08 +00:00
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the GNU
Lesser General Public License for more details .
You should have received a copy of the GNU Lesser General Public
2007-07-10 03:42:26 +00:00
License along with this library ; if not , see < http : //www.gnu.org/licenses/>.
2007-06-02 09:10:08 +00:00
2003-07-29 20:11:18 +00:00
*/
2006-09-18 22:49:20 +00:00
# ifdef HAVE_SYS_WAIT_H
# include <sys/wait.h>
# endif
2003-07-29 20:11:18 +00:00
2006-09-18 22:49:20 +00:00
# include <signal.h>
2003-07-29 20:11:18 +00:00
2006-09-18 22:49:20 +00:00
# ifndef SIGCLD
# define SIGCLD SIGCHLD
# endif
2003-07-29 20:11:18 +00:00
2007-01-15 19:10:54 +00:00
# ifdef HAVE_SETJMP_H
2006-11-29 23:20:22 +00:00
# include <setjmp.h>
2007-01-15 19:10:54 +00:00
# endif
2006-11-29 23:20:22 +00:00
2013-01-14 15:21:52 -08:00
# ifdef HAVE_SYS_UCONTEXT_H
# include <sys/ucontext.h>
# endif
2007-11-06 21:47:57 -08:00
# if !defined(HAVE_SIG_ATOMIC_T_TYPE)
typedef int sig_atomic_t ;
# endif
2009-04-20 15:47:19 +02:00
# if !defined(HAVE_WAITPID) && defined(HAVE_WAIT4)
2016-04-01 16:44:21 -07:00
int rep_waitpid ( pid_t pid , int * status , int options ) ;
2009-04-20 15:47:19 +02:00
# endif
2003-07-29 20:11:18 +00:00
# endif