swh:1:snp:47f1e8bb459169b0feb652a9c3d9cbabd8526d4a
Raw File
Tip revision: 03973056a08d1694cf1c819eb2e8b9557650f70e authored by Junio C Hamano on 13 November 2013, 20:59:31 UTC
Git 1.8.5-rc2
Tip revision: 0397305
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