Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: ba63bfaa59ee41bd679286a594cc643b5a53c48d authored by Junio C Hamano on 21 April 2015, 19:17:09 UTC
Git 2.3.6
Tip revision: ba63bfa
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