blob: d9a769d19084587b397c50e9420843be38e89903 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef THREAD_COMPAT_H
#define THREAD_COMPAT_H
#ifndef NO_PTHREADS
#include <pthread.h>
extern int online_cpus(void);
extern int init_recursive_mutex(pthread_mutex_t*);
#else
#define online_cpus() 1
#endif
#endif /* THREAD_COMPAT_H */
|