diff --git a/newlib/ChangeLog b/newlib/ChangeLog index 4831204ee..c34300856 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,3 +1,9 @@ +2009-10-13 Yaakov Selkowitz + + * libc/include/sys/signal.h: Include always. + [__CYGWIN__, __rtems__]: Define kill first argument as pid_t per + standards. + 2009-10-09 Dave Korn * libc/include/sys/time.h (_TIMEVAL_DEFINED): Define when diff --git a/newlib/libc/include/sys/signal.h b/newlib/libc/include/sys/signal.h index 454fbc12e..8aaf9d584 100644 --- a/newlib/libc/include/sys/signal.h +++ b/newlib/libc/include/sys/signal.h @@ -8,13 +8,10 @@ extern "C" { #include "_ansi.h" #include +#include /* #ifndef __STRICT_ANSI__*/ -#if defined(_POSIX_THREADS) -#include /* 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 - always defines pid_t to be int. If that ever - changes, then we will need to do something else, perhaps along the - lines of . */ -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));