ADTF  3.18.3
thread.h
Go to the documentation of this file.
1 
15 #ifndef A_UTIL_UTIL_CONCURRENCY_THREAD_HEADER_INCLUDED
16 #define A_UTIL_UTIL_CONCURRENCY_THREAD_HEADER_INCLUDED
17 
18 #include <thread>
19 
20 namespace a_util {
21 namespace concurrency {
23 using std::thread;
24 
25 namespace this_thread {
30 using std::this_thread::get_id;
35 using std::this_thread::yield;
36 
37 } // namespace this_thread
38 } // namespace concurrency
39 } // namespace a_util
40 
41 #endif // A_UTIL_UTIL_CONCURRENCY_THREAD_HEADER_INCLUDED
Serves as the root component, with common functionality documented in core functionality.
Definition: base.h:24