Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
分派任务队列示例
std::thread dispatherThread = std::thread( [taskQueue]() { while (true) { bool processed = XTaskQueueDispatch(taskQueue, XTaskQueuePort::Completion, INFINITE); if (!processed) { // The task queue has been terminated, so return. break; } } });
相关主题
此页面对您有帮助吗?