diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2013-02-26 10:32:36 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2013-02-26 10:32:36 +0000 |
commit | 1ef8ce71a885e8127b4dc32442b264966fccd2a0 (patch) | |
tree | 631fb312411655de13989040f771e8c0c536bdd3 /winsup/cygwin/include/pthread.h | |
parent | 7080b364170f3b0c10518f3c4ad3585c6845c16e (diff) | |
download | cygnal-1ef8ce71a885e8127b4dc32442b264966fccd2a0.tar.gz cygnal-1ef8ce71a885e8127b4dc32442b264966fccd2a0.tar.bz2 cygnal-1ef8ce71a885e8127b4dc32442b264966fccd2a0.zip |
* include/pthread.h (pthread_atfork): Add missing declaration.
Diffstat (limited to 'winsup/cygwin/include/pthread.h')
-rw-r--r-- | winsup/cygwin/include/pthread.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/winsup/cygwin/include/pthread.h b/winsup/cygwin/include/pthread.h index 6cb7ddf42..c6798f13a 100644 --- a/winsup/cygwin/include/pthread.h +++ b/winsup/cygwin/include/pthread.h @@ -63,6 +63,8 @@ extern "C" #define PTHREAD_SCOPE_PROCESS 0 #define PTHREAD_SCOPE_SYSTEM 1 +/* Register Fork Handlers */ +int pthread_atfork (void (*)(void), void (*)(void), void (*)(void)); /* Attributes */ int pthread_attr_destroy (pthread_attr_t *); |