We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug I modify hello_sample.c with following code found that program always costing 100% cpu when sleep waiting for free sdk.
// 1. create sdk object by config void* sdk; if (strlen(config) == 0) { struct bcos_sdk_c_config* cfg = bcos_sdk_create_config(1, "172.25.0.3", 20210); sdk = bcos_sdk_create(cfg); } else { sdk = bcos_sdk_create_by_config_file(config); } ... sleep(300); //before bcos_sdk_c_free
To Reproduce Steps to reproduce the behavior:
Expected behavior no empty run cost
Screenshots none
Environment (please complete the following information):
Additional context none
The text was updated successfully, but these errors were encountered:
<fix> fix bug FISCO-BCOS#221 cpu cost by bcos_sdk_create()
6586879
Mentioned in #222
Sorry, something went wrong.
No branches or pull requests
Describe the bug
I modify hello_sample.c with following code found that program always costing 100% cpu when sleep waiting for free sdk.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
no empty run cost
Screenshots
none
Environment (please complete the following information):
Additional context
none
The text was updated successfully, but these errors were encountered: