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,26 @@
# Mutex::Unlock
释放互斥锁。
```cpp
void Unlock();
void unlock() const;
```
## 行为说明
当前实现有两套入口:
- `Unlock()`:引擎风格命名。
- `unlock()`:标准 Lockable 风格别名。
两者都直接转发到底层 `std::mutex::unlock()`
## 返回值
- 无。
## 相关文档
- [返回类型总览](Mutex.md)
- [Lock](Lock.md)