projects
/
git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
ref-filter: add option to filter out tags, branches and remotes
[git]
/
thread-utils.h
1
#ifndef THREAD_COMPAT_H
2
#define THREAD_COMPAT_H
3
4
#ifndef NO_PTHREADS
5
#include <pthread.h>
6
7
extern int online_cpus(void);
8
extern int init_recursive_mutex(pthread_mutex_t*);
9
10
#else
11
12
#define online_cpus() 1
13
14
#endif
15
#endif /* THREAD_COMPAT_H */