Revision c049b61d42bbdbe5bf938c0fc13ad09970a945df authored by Nguyễn Thái Ngọc Duy on 13 March 2014, 11:45:31 UTC, committed by Junio C Hamano on 13 March 2014, 17:54:21 UTC
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent a2036d7
Raw File
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