summaryrefslogtreecommitdiff
path: root/inc
diff options
context:
space:
mode:
authorBryan Ischo <bryan@ischo.com>2008-08-14 12:14:46 +0000
committerBryan Ischo <bryan@ischo.com>2008-08-14 12:14:46 +0000
commit4e841bcc1010f8dd36031c57460908c368c5cb9f (patch)
tree3189d40ff2ad5e871df575a2d4d80dbb1e4d0e4d /inc
parent7fd73adff17c0511cf2c09da16d46d1a8e608866 (diff)
downloadceph-libs3-4e841bcc1010f8dd36031c57460908c368c5cb9f.tar.gz
* Support GNUTLS on Windows. But - it doesn't work. Maybe my GNUTLS
library is too old? Since openssl does work, I expect that I will branch this and revert.
Diffstat (limited to 'inc')
-rw-r--r--inc/mingw/pthread.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/inc/mingw/pthread.h b/inc/mingw/pthread.h
index b1bd419..674a62a 100644
--- a/inc/mingw/pthread.h
+++ b/inc/mingw/pthread.h
@@ -37,9 +37,9 @@ typedef struct
CRITICAL_SECTION criticalSection;
} pthread_mutex_t;
-void pthread_mutex_init(pthread_mutex_t *mutex, void *);
-void pthread_mutex_lock(pthread_mutex_t *mutex);
-void pthread_mutex_unlock(pthread_mutex_t *mutex);
-void pthread_mutex_destroy(pthread_mutex_t *mutex);
+int pthread_mutex_init(pthread_mutex_t *mutex, void *);
+int pthread_mutex_lock(pthread_mutex_t *mutex);
+int pthread_mutex_unlock(pthread_mutex_t *mutex);
+int pthread_mutex_destroy(pthread_mutex_t *mutex);
#endif /* PTHREAD_H */