Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 5f95c9f850b19b368c43ae399cc831b17a26a5ac authored by Junio C Hamano on 14 February 2014, 19:35:04 UTC
Git 1.9.0
Tip revision: 5f95c9f
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