2012-09-28 18:36:46 -04:00
|
|
|
/*******************************************************************************
|
2011-11-06 16:00:29 -05:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
Copyright(C) Jonas 'Sortie' Termansen 2011.
|
2011-11-06 16:00:29 -05:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
This file is part of the Sortix C Library.
|
2011-11-06 16:00:29 -05:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
The Sortix C 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 version 3 of the License, or (at your
|
|
|
|
option) any later version.
|
2011-11-06 16:00:29 -05:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
The Sortix C Library is distributed in the hope that it will be useful, but
|
|
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
|
|
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
|
|
|
|
License for more details.
|
2011-11-06 16:00:29 -05:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
|
|
|
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
|
2011-11-06 16:00:29 -05:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
sys/wait.h
|
|
|
|
Declarations for waiting.
|
2011-11-06 16:00:29 -05:00
|
|
|
|
2012-09-28 18:36:46 -04:00
|
|
|
*******************************************************************************/
|
2011-11-06 16:00:29 -05:00
|
|
|
|
|
|
|
// TODO: Make this header comply with POSIX-1.2008
|
|
|
|
|
2012-09-08 13:17:40 -04:00
|
|
|
#ifndef _SYS_WAIT_H
|
|
|
|
#define _SYS_WAIT_H 1
|
2011-11-06 16:00:29 -05:00
|
|
|
|
|
|
|
#include <features.h>
|
2012-09-08 13:17:40 -04:00
|
|
|
#include <sortix/wait.h>
|
2011-11-06 16:00:29 -05:00
|
|
|
|
|
|
|
__BEGIN_DECLS
|
|
|
|
|
|
|
|
@include(pid_t.h)
|
|
|
|
|
2012-09-28 18:53:50 -04:00
|
|
|
/* TODO: These are not implemented in sortix libc yet. */
|
2012-02-11 12:50:12 -05:00
|
|
|
#if defined(__SORTIX_SHOW_UNIMPLEMENTED)
|
2011-11-06 16:00:29 -05:00
|
|
|
int waitid(idtype_t, id_t, siginfo_t*, int);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
pid_t wait(int* stat_loc);
|
|
|
|
pid_t waitpid(pid_t pid, int *stat_loc, int options);
|
|
|
|
|
|
|
|
__END_DECLS
|
|
|
|
|
|
|
|
#endif
|