1234567891011121314 |
- #pragma once
- #include <cstddef>
- namespace NYT::NThreading {
- ////////////////////////////////////////////////////////////////////////////////
- #define YT_DECLARE_SPIN_LOCK(type, name) \
- type name{__LOCATION__}
- ////////////////////////////////////////////////////////////////////////////////
- } // namespace NYT::NThreading
|