8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
我的CPU是四核,创建workbrach对象的时候会导致CPU高占用
#include <workspace/workspace.hpp> int main() { wsp::workbranch br; sleep(10); }
The text was updated successfully, but these errors were encountered:
目前策略是快速创建快速销毁
Sorry, something went wrong.
应该是忙等待导致的CPU占用高(worker线程在空闲时不停的yield),对延迟不敏感可以把yield改成std::this_thread::sleep_for(std::chrono::milliseconds(1));试试
No branches or pull requests
我的CPU是四核,创建workbrach对象的时候会导致CPU高占用
The text was updated successfully, but these errors were encountered: