Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 5738c9c21e53356ab5020912116e7f82fd2d428f authored by Junio C Hamano on 12 September 2011, 17:44:32 UTC
Git 1.7.7-rc1
Tip revision: 5738c9c
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