https://github.com/git/git
Raw File
Tip revision: e156455ea49124c140a67623f22a393db62d5d98 authored by Junio C Hamano on 28 May 2014, 18:04:19 UTC
Git 2.0
Tip revision: e156455
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