https://github.com/git/git
Raw File
Tip revision: 406da7803217998ff6bf5dc69c55b1613556c2f4 authored by Junio C Hamano on 02 December 2011, 17:31:32 UTC
Git 1.7.8
Tip revision: 406da78
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