diff options
author | Thomas Pfaff <tpfaff@gmx.net> | 2003-01-09 20:40:44 +0000 |
---|---|---|
committer | Thomas Pfaff <tpfaff@gmx.net> | 2003-01-09 20:40:44 +0000 |
commit | ed9fe4559ca16bd11a3ab7144951b97b9378608b (patch) | |
tree | 94c1de8b337c5fa564d4298395c512561b26f279 /winsup/cygwin/pthread.cc | |
parent | 93353aee63945ba333407a21f7d5c69eea58265f (diff) | |
download | cygnal-ed9fe4559ca16bd11a3ab7144951b97b9378608b.tar.gz cygnal-ed9fe4559ca16bd11a3ab7144951b97b9378608b.tar.bz2 cygnal-ed9fe4559ca16bd11a3ab7144951b97b9378608b.zip |
Applied cond_init patch
Diffstat (limited to 'winsup/cygwin/pthread.cc')
-rw-r--r-- | winsup/cygwin/pthread.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/pthread.cc b/winsup/cygwin/pthread.cc index 30d048047..09a494d2a 100644 --- a/winsup/cygwin/pthread.cc +++ b/winsup/cygwin/pthread.cc @@ -349,7 +349,7 @@ pthread_cond_destroy (pthread_cond_t * cond) int pthread_cond_init (pthread_cond_t * cond, const pthread_condattr_t * attr) { - return __pthread_cond_init (cond, attr); + return pthread_cond::init (cond, attr); } int |