Changeset b57a3ee in mainline for uspace/lib/cpp/include/__bits/thread
- Timestamp:
- 2018-07-05T21:41:24Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c735afb
- Parents:
- 4f461384
- git-author:
- Dzejrou <dzejrou@…> (2018-06-25 16:58:08)
- git-committer:
- Dzejrou <dzejrou@…> (2018-07-05 21:41:24)
- Location:
- uspace/lib/cpp/include/__bits/thread
- Files:
-
- 6 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/cpp/include/__bits/thread/condition_variable.hpp
r4f461384 rb57a3ee 27 27 */ 28 28 29 #ifndef LIBCPP_ CONDITION_VARIABLE30 #define LIBCPP_ CONDITION_VARIABLE31 32 #include <__bits/thread .hpp>29 #ifndef LIBCPP_BITS_THREAD_CONDITION_VARIABLE 30 #define LIBCPP_BITS_THREAD_CONDITION_VARIABLE 31 32 #include <__bits/thread/threading.hpp> 33 33 #include <mutex> 34 34 -
uspace/lib/cpp/include/__bits/thread/future.hpp
r4f461384 rb57a3ee 27 27 */ 28 28 29 #ifndef LIBCPP_ FUTURE30 #define LIBCPP_ FUTURE29 #ifndef LIBCPP_BITS_THREAD_FUTURE 30 #define LIBCPP_BITS_THREAD_FUTURE 31 31 32 32 #include <memory> -
uspace/lib/cpp/include/__bits/thread/mutex.hpp
r4f461384 rb57a3ee 27 27 */ 28 28 29 #ifndef LIBCPP_MUTEX 30 #define LIBCPP_MUTEX 31 29 #ifndef LIBCPP_BITS_THREAD_MUTEX 30 #define LIBCPP_BITS_THREAD_MUTEX 31 32 #include <__bits/common.hpp> 33 #include <__bits/thread/threading.hpp> 32 34 #include <functional> 33 #include <__bits/common.hpp>34 #include <__bits/thread.hpp>35 35 #include <thread> 36 36 -
uspace/lib/cpp/include/__bits/thread/shared_mutex.hpp
r4f461384 rb57a3ee 27 27 */ 28 28 29 #ifndef LIBCPP_ SHARED_MUTEX30 #define LIBCPP_ SHARED_MUTEX31 32 #include <__bits/thread .hpp>29 #ifndef LIBCPP_THREAD_SHARED_MUTEX 30 #define LIBCPP_THREAD_SHARED_MUTEX 31 32 #include <__bits/thread/threading.hpp> 33 33 #include <chrono> 34 34 #include <mutex> -
uspace/lib/cpp/include/__bits/thread/thread.hpp
r4f461384 rb57a3ee 1 1 /* 2 * Copyright (c) 201 7Jaroslav Jindrak2 * Copyright (c) 2018 Jaroslav Jindrak 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 #ifndef LIBCPP_THREAD 30 #define LIBCPP_THREAD 31 29 #ifndef LIBCPP_BITS_THREAD 30 #define LIBCPP_BITS_THREAD 31 32 #include <__bits/common.hpp> 33 #include <__bits/thread/threading.hpp> 32 34 #include <chrono> 33 #include <__bits/common.hpp>34 #include <__bits/thread.hpp>35 35 #include <ostream> 36 36 -
uspace/lib/cpp/include/__bits/thread/threading.hpp
r4f461384 rb57a3ee 27 27 */ 28 28 29 #ifndef LIBCPP_BITS_THREAD 30 #define LIBCPP_BITS_THREAD 29 #ifndef LIBCPP_BITS_THREAD_THREADING 30 #define LIBCPP_BITS_THREAD_THREADING 31 31 32 32 namespace std::hel
Note:
See TracChangeset
for help on using the changeset viewer.