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
int destroy_ctx(struct pingpong_context *ctx, struct perftest_parameters *user_param) { int i, first, dereg_counter, rc; int test_result = 0; int num_of_qps = user_param->num_of_qps; if (user_param->wait_destroy) { printf(" Waiting %u seconds before releasing resources...\n", user_param->wait_destroy); sleep(user_param->wait_destroy); } ...... }
The field has default value 0, and I want to know why should I wait for x seconds before destroy_ctx(). Does this have any special significance?
destroy_ctx()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The field has default value 0, and I want to know why should I wait for x seconds before
destroy_ctx()
. Does this have any special significance?The text was updated successfully, but these errors were encountered: