swh:1:snp:6df5a50b8107b6bbe1e51d0239d816a7503c536a
Raw File
Tip revision: c16df57c5a778ef14ede7ad202c74146269d61ac authored by Junio C Hamano on 23 March 2012, 21:50:23 UTC
Git 1.7.10-rc2
Tip revision: c16df57
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