Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: f174a2583c9f42315b60205890fa67a79a1f1669 authored by Junio C Hamano on 06 February 2012, 07:46:44 UTC
Git 1.7.6.6
Tip revision: f174a25
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