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
eventfd 以及 quotas 初始化应该在 fork 之前。
eventfd
quotas
fork
int efd = eventfd(0, EFD_CLOEXEC | EFD_NONBLOCK); if (efd < 0) { LOG_ERROR("create event fd failed"); return; } gProbe->efd = efd; std::fill_n(gProbe->quotas[0], sizeof(gProbe->quotas) / sizeof(**gProbe->quotas), DEFAULT_QUOTAS);
The text was updated successfully, but these errors were encountered:
#527
Sorry, something went wrong.
No branches or pull requests
eventfd
以及quotas
初始化应该在fork
之前。The text was updated successfully, but these errors were encountered: