https://github.com/git/git
Raw File
Tip revision: 4dac0679feaebbf6545daec14480cf6b94cb74ed authored by Junio C Hamano on 25 February 2013, 16:39:23 UTC
Git 1.8.2-rc1
Tip revision: 4dac067
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*);

#endif
#endif /* THREAD_COMPAT_H */
back to top