* libc/include/sys/signal.h [__SPU__] (kill): Declare.
This commit is contained in:
parent
8c049028d9
commit
a800b3ae9c
|
@ -1,3 +1,8 @@
|
|||
2014-12-04 Ulrich Weigand <uweigand@de.ibm.com>
|
||||
Corinna Vinschen <vinschen@redhat.com>
|
||||
|
||||
* libc/include/sys/signal.h [__SPU__] (kill): Declare.
|
||||
|
||||
2014-12-03 Jeff Johnston <jjohnstn@redhat.com>
|
||||
|
||||
* libc/include/inttypes.h: Only enable the 8-bit scanning macros
|
||||
|
|
|
@ -169,7 +169,6 @@ int _EXFUN(sigprocmask, (int how, const sigset_t *set, sigset_t *oset));
|
|||
int _EXFUN(pthread_sigmask, (int how, const sigset_t *set, sigset_t *oset));
|
||||
#endif
|
||||
|
||||
/* protos for functions found in winsup sources for CYGWIN */
|
||||
#if defined(__CYGWIN__) || defined(__rtems__)
|
||||
#undef sigaddset
|
||||
#undef sigdelset
|
||||
|
@ -179,8 +178,12 @@ int _EXFUN(pthread_sigmask, (int how, const sigset_t *set, sigset_t *oset));
|
|||
|
||||
#ifdef _COMPILING_NEWLIB
|
||||
int _EXFUN(_kill, (pid_t, int));
|
||||
#endif
|
||||
#endif /* _COMPILING_NEWLIB */
|
||||
#endif /* __CYGWIN__ || __rtems__ */
|
||||
#if defined(__CYGWIN__) || defined(__rtems__) || defined(__SPU__)
|
||||
int _EXFUN(kill, (pid_t, int));
|
||||
#endif /* __CYGWIN__ || __rtems__ || __SPU__ */
|
||||
#if defined(__CYGWIN__) || defined(__rtems__)
|
||||
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