https://github.com/git/git
Raw File
Tip revision: 454cb6bd52a4de614a3633e4f547af03d5c3b640 authored by Junio C Hamano on 29 November 2016, 20:23:07 UTC
Git 2.11
Tip revision: 454cb6b
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