https://github.com/git/git
Raw File
Tip revision: 0bc85abb7aa9b24b093253018801a0fb43d01122 authored by Junio C Hamano on 09 April 2014, 19:04:34 UTC
Git 1.9.2
Tip revision: 0bc85ab
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