* libc/include/sys/unistd.h: Add pthread_atfork (Cygwin only).

This commit is contained in:
Christopher Faylor 2001-04-13 15:37:47 +00:00
parent 1114d47268
commit a25b8414ac
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2001-04-13 Robert Collins <rbtcollins@hotmail.com>
* libc/include/sys/unistd.h: Add pthread_atfork (Cygwin only).
Thu Apr 12 23:11:00 2001 Corinna Vinschen <corinna@vinschen.de>
* libc/include/sys/errno.h: Add ECASECLASH to indicate case clash

View File

@ -65,6 +65,9 @@ int _EXFUN(nice, (int __nice_value ));
off_t _EXFUN(lseek, (int __fildes, off_t __offset, int __whence ));
long _EXFUN(pathconf, (const char *__path, int __name ));
int _EXFUN(pause, (void ));
#ifdef __CYGWIN__
int _EXFUN(pthread_atfork, (void (*)(void), void (*)(void), void (*)(void)));
#endif
int _EXFUN(pipe, (int __fildes[2] ));
_READ_WRITE_RETURN_TYPE _EXFUN(read, (int __fd, void *__buf, size_t __nbyte ));
int _EXFUN(rmdir, (const char *__path ));