Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 3fe4498197ced84886b4adaddf18f1109b477f8e authored by Junio C Hamano on 03 June 2012, 22:56:05 UTC
Git 1.7.11-rc1
Tip revision: 3fe4498
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