repo.or.cz
/
client-tools.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
missing project/build files
[client-tools.git]
/
src
/
external
/
3rd
/
library
/
soePlatform
/
Base
/
Thread.h
blob
90e3d8099159176ec74154e6be3dff672332e48c
1
#ifndef BASE_THREAD_H
2
#define BASE_THREAD_H
3
4
#ifdef WIN32
5
6
#include
"./win32/Thread.h"
7
8
#elif linux
9
10
#include
"./linux/Thread.h"
11
12
#elif sparc
13
14
#include
"./solaris/Thread.h"
15
16
#else
17
18
#error /Base/Thread.h: Undefine platform type
19
20
#endif
21
22
#endif
// BASE_THREAD_H