Some lockable objects are “agent oblivious” in that they work for any
execution agent model because they do not determine or store the agent's ID (e.g., an
ordinary spin lock).
The BasicLockable requirements, the Lockable requirements,
and the TimedLockable requirements list the requirements imposed by these library types
in order to acquire or release ownership of a lock by a given execution agent.
A type L meets the BasicLockable requirements if the following expressions are
well-formed and have the specified semantics (m denotes a value of type L).
A type L meets the Lockable requirements if it meets the BasicLockable
requirements and the following expressions are well-formed and have the specified semantics
(m denotes a value of type L).
A type L meets the TimedLockable requirements if it meets the Lockable
requirements and the following expressions are well-formed and have the specified semantics
(m denotes a value of type L, rel_time denotes a value of an
instantiation of duration ([time.duration]), and abs_time denotes a value
of an instantiation of time_point ([time.point])).