https://github.com/git/git
Raw File
Tip revision: a42a58d7b62cc1d6301440e81a83feed9d7c118c authored by Junio C Hamano on 22 May 2018, 05:18:51 UTC
Git 2.16.4
Tip revision: a42a58d
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