https://github.com/git/git
Raw File
Tip revision: d4d5ab4727edd1758157dd0b61c1ff3b7deabfcd authored by Junio C Hamano on 09 November 2011, 00:37:00 UTC
Git 1.7.7.3
Tip revision: d4d5ab4
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