https://github.com/git/git
Raw File
Tip revision: 7af4fc9cf3e3538a9bfb8b14feeacdeb7f6db7d5 authored by Junio C Hamano on 22 June 2011, 23:13:16 UTC
Git 1.7.6-rc3
Tip revision: 7af4fc9
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