https://github.com/git/git
Raw File
Tip revision: d9c691a759d62cef53a6cc11864a2ef4b0829244 authored by Junio C Hamano on 16 March 2016, 21:00:18 UTC
Git 2.8-rc3
Tip revision: d9c691a
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