Commit 3951fae5 authored by Tom Lane's avatar Tom Lane

Fix declarations of pthread functions, missed in recent commit.

parent 10a3471b
......@@ -10,10 +10,10 @@ DWORD pthread_self(void);
void pthread_setspecific(pthread_key_t, void *);
void *pthread_getspecific(pthread_key_t);
void pthread_mutex_init(pthread_mutex_t *, void *attr);
void pthread_mutex_lock(pthread_mutex_t *);
int pthread_mutex_init(pthread_mutex_t *, void *attr);
int pthread_mutex_lock(pthread_mutex_t *);
/* blocking */
void pthread_mutex_unlock(pthread_mutex_t *);
int pthread_mutex_unlock(pthread_mutex_t *);
#endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment