docs: rebuild Threading API content

This commit is contained in:
2026-03-26 20:59:59 +08:00
parent 9a2d77b81d
commit 8f486611d5
78 changed files with 1648 additions and 1061 deletions

View File

@@ -0,0 +1,30 @@
# SpinLock::Unlock
释放自旋锁。
```cpp
void Unlock();
void unlock();
```
## 行为说明
当前实现有两套入口:
- `Unlock()`:引擎风格命名。
- `unlock()`:标准 Lockable 风格别名。
两者都执行:
```cpp
m_flag.clear(std::memory_order_release);
```
## 返回值
- 无。
## 相关文档
- [返回类型总览](SpinLock.md)
- [Lock](Lock.md)