Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 740c281d21ef5b27f6f1b942a4f2fc20f51e8c7e authored by Junio C Hamano on 23 July 2014, 18:33:16 UTC
Git 2.0.3
Tip revision: 740c281
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