https://github.com/git/git
Raw File
Tip revision: ed9fe755130891fc878bb2433204faffb534697b authored by Junio C Hamano on 26 November 2012, 02:40:34 UTC
Git 1.8.0.1
Tip revision: ed9fe75
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