https://github.com/git/git
Raw File
Tip revision: 2ce0edcd786b790fed580e7df56291619834d276 authored by Junio C Hamano on 21 December 2011, 20:02:13 UTC
Git 1.7.8.1
Tip revision: 2ce0edc
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