Created on 2017-11-07.00:00:00 last changed 45 months ago
Proposed resolution:
This wording is relative to N4700.
Change [thread.lock.algorithm] as indicated:
template <class L1, class L2, class... L3> int try_lock(L1&, L2&, L3&...);-1- Requires: […]
-2- Effects: Calls try_lock() for each argument in order beginning with the first until all arguments have been processed or a call to try_lock() fails, either by returning false or by throwing an exception. If a call to try_lock() fails, unlock()shall beis called for all prior argumentsand there shall bewith no further calls to try_lock(). […]template <class L1, class L2, class... L3> void lock(L1&, L2&, L3&...);-4- Requires: […]
-5- Effects: All arguments are locked via a sequence of calls to lock(), try_lock(), or unlock() on each argument. The sequence of callsshalldoes not result in deadlock, but is otherwise unspecified. [Note: A deadlock avoidance algorithm such as try-and-back-off must be used, but the specific algorithm is not specified to avoid over-constraining implementations. — end note] If a call to lock() or try_lock() throws an exception, unlock()shall beis called for any argument that had been locked by a call to lock() or try_lock().
[ 2018-3-17 Adopted in Jacksonville ]
[ 2017-11 Albuquerque Wednesday night issues processing ]
Moved to Ready
[thread.lock.algorithm] says:
"If a call to try_lock() fails, unlock() shall be called for all prior arguments and there shall be no further calls to try_lock()."
We try to use "shall" for requirements on the user (e.g. as in the previous paragraph) which is absolutely not what is meant here.
History | |||
---|---|---|---|
Date | User | Action | Args |
2021-02-25 10:48:01 | admin | set | status: wp -> c++20 |
2018-03-18 16:03:30 | admin | set | messages: + msg9746 |
2018-03-18 16:03:30 | admin | set | status: voting -> wp |
2018-02-12 01:13:49 | admin | set | status: ready -> voting |
2017-11-09 15:13:04 | admin | set | messages: + msg9527 |
2017-11-09 15:13:04 | admin | set | status: new -> ready |
2017-11-07 19:50:20 | admin | set | messages: + msg9509 |
2017-11-07 00:00:00 | admin | create |