https://github.com/git/git
Raw File
Tip revision: e2b2d6a172b76d44cb7b1ddb12ea5bfac9613a44 authored by Junio C Hamano on 23 November 2016, 19:24:59 UTC
Git 2.11-rc3
Tip revision: e2b2d6a
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