* libc/include/sys/signal.h: Remove pthread_kill declaration
when __CYGWIN__ is defined.
This commit is contained in:
parent
0ca5f51da4
commit
bcc49082f6
|
@ -1,3 +1,8 @@
|
|||
2002-01-23 Thomas Fitzsimmons <fitzsim@redhat.com>
|
||||
|
||||
* libc/include/sys/signal.h: Remove pthread_kill declaration
|
||||
when __CYGWIN__ is defined.
|
||||
|
||||
2002-01-18 Mark Bradshaw <bradshaw@staff.crosswalk.com>
|
||||
|
||||
* libc/include/time.h: Add prototype for strptime for Cygwin.
|
||||
|
|
|
@ -158,7 +158,7 @@ int _EXFUN(sigpending, (sigset_t *));
|
|||
int _EXFUN(sigsuspend, (const sigset_t *));
|
||||
int _EXFUN(sigpause, (int));
|
||||
|
||||
#if defined(_POSIX_THREADS)
|
||||
#if defined(_POSIX_THREADS) && !defined(__CYGWIN__)
|
||||
int _EXFUN(pthread_kill, (pthread_t thread, int sig));
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in New Issue