test-lib: add LIBPCRE1 & LIBPCRE2 prerequisites
[git.git] / thread-utils.h
blobd9a769d19084587b397c50e9420843be38e89903
1 #ifndef THREAD_COMPAT_H
2 #define THREAD_COMPAT_H
4 #ifndef NO_PTHREADS
5 #include <pthread.h>
7 extern int online_cpus(void);
8 extern int init_recursive_mutex(pthread_mutex_t*);
10 #else
12 #define online_cpus() 1
14 #endif
15 #endif /* THREAD_COMPAT_H */