docs: update memory and threading API docs

This commit is contained in:
2026-03-20 02:35:24 +08:00
parent c5b17239ca
commit fd792b7df1
103 changed files with 2485 additions and 673 deletions

View File

@@ -6,17 +6,10 @@ void Wait(uint64_t taskId)
**注意:** 此方法当前为空实现,不执行任何操作。
**参数:**
- `taskId` - 要等待的任务 ID
**返回:**
**复杂度:** N/A空实现
**当前状态:** 此方法为空实现,不执行任何操作。任务系统目前不支持按任务 ID 等待。
**建议:** 使用 `TaskGroup::Wait` 代替此方法。
**线程安全:** N/A (空实现)
**示例:**
```cpp