Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 8ced8e40ac07c1b13b2edbb459d37b9b2d7275d6 authored by Junio C Hamano on 20 May 2014, 19:07:35 UTC
Git 2.0-rc4
Tip revision: 8ced8e4
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