https://github.com/git/git
Raw File
Tip revision: 6acef043581d69597860f3343ec2691c72b0803c authored by Junio C Hamano on 31 March 2011, 20:58:16 UTC
Git 1.7.5-rc0
Tip revision: 6acef04
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