* @brief 构造函数 * @param _name 锁名 * @note 需要堆初始化后可用 */
| 90 | * @note 需要堆初始化后可用 |
| 91 | */ |
| 92 | explicit SpinLock(const char* _name) : name(_name) {} |
| 93 | |
| 94 | SpinLock() = default; |
| 95 | SpinLock(const SpinLock&) = delete; |
nothing calls this directly
no outgoing calls
no test coverage detected