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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
In platform.h, these functions are defined:
extern int lf_critical_section_enter(); extern int lf_critical_section_exit();
However, reactor.c discards the return value:
void _lf_critical_section_enter() { lf_critical_section_enter(); } void _lf_critical_section_exit() { lf_critical_section_exit(); }
Shouldn't _lf_critical_section_enter and exit return an int consistently? And shouldn't the return value be checked?
The text was updated successfully, but these errors were encountered:
I agree, I will address this.
Sorry, something went wrong.
Address #135 and #215
0050610
erlingrj
Successfully merging a pull request may close this issue.
In platform.h, these functions are defined:
However, reactor.c discards the return value:
Shouldn't _lf_critical_section_enter and exit return an int consistently? And shouldn't the return value be checked?
The text was updated successfully, but these errors were encountered: