* This class implements a lock that will never cause an std::thread to block * (i.e. sleep) if the lock is unavailable. Instead the SpinLock will busy-wait * for the lock to become available. The SpinLock is intended to enforce short * periods of mutual exclusion where the lock is not held for very long. These * locks are not recursive; if the same thread tries to lock a SpinLock while * hol
source not stored for this graph (policy: none)
nothing calls this directly
no outgoing calls
no test coverage detected