swh:1:snp:47f1e8bb459169b0feb652a9c3d9cbabd8526d4a
Raw File
Tip revision: 39aaab109972d6bbc1d0ffe5d4de47bbd4b8bb07 authored by Junio C Hamano on 22 September 2017, 05:44:45 UTC
Git 2.11.4
Tip revision: 39aaab1
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