Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 78f4c9f62549fdd9a52550449c4e3148e7e0900d authored by Junio C Hamano on 23 February 2012, 01:48:01 UTC
Git 1.7.9.2
Tip revision: 78f4c9f
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