Changeset 9eea0b7 in mainline
- Timestamp:
- 2019-06-27T16:02:12Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 046b66e
- Parents:
- 04c0fc5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/cpp/include/__bits/thread/future.hpp
r04c0fc5 r9eea0b7 125 125 void set_value(const R& val, bool set) 126 126 { 127 aux::threading::mutex::lock(mutex_); 127 128 value_ = val; 128 129 value_set_ = set; 130 aux::threading::mutex::unlock(mutex_); 131 132 aux::threading::condvar::broadcast(condvar_); 129 133 } 130 134
Note:
See TracChangeset
for help on using the changeset viewer.