Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: edca4152560522a431a51fc0a06147fc680b5b18 authored by Junio C Hamano on 24 May 2013, 18:34:46 UTC
Git 1.8.3
Tip revision: edca415
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