Changeset a97b838 in mainline
- Timestamp:
- 2018-07-05T21:41:20Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ce22ac6
- Parents:
- 857d4cc
- git-author:
- Dzejrou <dzejrou@…> (2018-03-29 12:05:35)
- git-committer:
- Dzejrou <dzejrou@…> (2018-07-05 21:41:20)
- Location:
- uspace/lib/cpp
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/cpp/include/impl/mutex.hpp
r857d4cc ra97b838 156 156 157 157 void lock(); 158 bool try_lock() ;158 bool try_lock() noexcept; 159 159 void unlock(); 160 160 -
uspace/lib/cpp/src/mutex.cpp
r857d4cc ra97b838 145 145 } 146 146 147 bool recursive_timed_mutex::try_lock() 147 bool recursive_timed_mutex::try_lock() noexcept 148 148 { 149 149 if (owner_ != this_thread::get_id())
Note:
See TracChangeset
for help on using the changeset viewer.