Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 8d530c4d64ffcc853889f7b385f554d53db375ed authored by Junio C Hamano on 21 September 2015, 20:26:13 UTC
Git 2.6-rc3
Tip revision: 8d530c4
thread-utils.h
#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 */
back to top