Skip to content
Snippets Groups Projects
Commit 3951fae5 authored by Tom Lane's avatar Tom Lane
Browse files

Fix declarations of pthread functions, missed in recent commit.

parent 10a3471b
No related branches found
No related tags found
No related merge requests found
......@@ -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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment