2009-10-13 Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
* libc/include/sys/signal.h: Include <sys/types.h> always. [__CYGWIN__, __rtems__]: Define kill first argument as pid_t per standards.
This commit is contained in:
parent
bc3aedd061
commit
81c59927a9
|
@ -1,3 +1,9 @@
|
|||
2009-10-13 Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
|
||||
|
||||
* libc/include/sys/signal.h: Include <sys/types.h> always.
|
||||
[__CYGWIN__, __rtems__]: Define kill first argument as pid_t per
|
||||
standards.
|
||||
|
||||
2009-10-09 Dave Korn <dave.korn@artimi.com>
|
||||
|
||||
* libc/include/sys/time.h (_TIMEVAL_DEFINED): Define when
|
||||
|
|
|
@ -8,13 +8,10 @@ extern "C" {
|
|||
|
||||
#include "_ansi.h"
|
||||
#include <sys/features.h>
|
||||
#include <sys/types.h>
|
||||
|
||||
/* #ifndef __STRICT_ANSI__*/
|
||||
|
||||
#if defined(_POSIX_THREADS)
|
||||
#include <sys/types.h> /* for pthread data types */
|
||||
#endif
|
||||
|
||||
typedef unsigned long sigset_t;
|
||||
|
||||
#if defined(__rtems__)
|
||||
|
@ -144,11 +141,8 @@ int _EXFUN(pthread_sigmask, (int how, const sigset_t *set, sigset_t *oset));
|
|||
#undef sigemptyset
|
||||
#undef sigfillset
|
||||
#undef sigismember
|
||||
/* The first argument to kill should be pid_t. Right now
|
||||
<sys/types.h> always defines pid_t to be int. If that ever
|
||||
changes, then we will need to do something else, perhaps along the
|
||||
lines of <machine/types.h>. */
|
||||
int _EXFUN(kill, (int, int));
|
||||
|
||||
int _EXFUN(kill, (pid_t, int));
|
||||
int _EXFUN(killpg, (pid_t, int));
|
||||
int _EXFUN(sigaction, (int, const struct sigaction *, struct sigaction *));
|
||||
int _EXFUN(sigaddset, (sigset_t *, const int));
|
||||
|
|
Loading…
Reference in New Issue