https://github.com/git/git
Raw File
Tip revision: 0f8e831356d4f1a34baf46bb1a6b2d4c89ec9cb8 authored by Junio C Hamano on 18 May 2016, 21:45:08 UTC
Git 2.8.3
Tip revision: 0f8e831
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