forked from orocos-toolchain/log4cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathThreading.hh
More file actions
37 lines (28 loc) · 827 Bytes
/
Threading.hh
File metadata and controls
37 lines (28 loc) · 827 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
* Threading.hh
*
* Copyright 2002, LifeLine Networks BV (www.lifeline.nl). All rights reserved.
* Copyright 2002, Bastiaan Bakker. All rights reserved.
*
* See the COPYING file for the terms of usage and distribution.
*/
#ifndef _LOG4CPP_THREADING_THREADING_HH
#define _LOG4CPP_THREADING_THREADING_HH
#include <log4cpp/Portability.hh>
#ifdef LOG4CPP_HAVE_THREADING
#ifdef LOG4CPP_USE_OMNITHREADS
#include <log4cpp/threading/OmniThreads.hh>
#endif
#ifdef LOG4CPP_USE_BOOSTTHREADS
#include <log4cpp/threading/BoostThreads.hh>
#endif
#ifdef LOG4CPP_USE_MSTHREADS
#include <log4cpp/threading/MSThreads.hh>
#endif
#ifdef LOG4CPP_USE_PTHREADS
#include <log4cpp/threading/PThreads.hh>
#endif
#else /* LOG4CPP_HAVE_THREADING */
#include <log4cpp/threading/DummyThreads.hh>
#endif /* LOG4CPP_HAVE_THREADING */
#endif