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
Generated verification code should be embedded in error initialization/management code (or a variation of it), as follows:
#ifdef FLG_MULTITHREAD init_erreur(irdata); if (setjmp(irdata->jmp_bloq) != 0) { return irdata->discords; } /* verification code */ return irdata->discords; #else init_erreur(); if (setjmp(jmp_bloq) != 0) { return discords; } /* verification code */ return discords; #endif /* FLG_MULTITHREAD */ }
For now, this is done using wrappers in static C files.
Alternatively (preferably), we should just use a better error handling mechanism.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Generated verification code should be embedded in error initialization/management code (or a variation of it), as follows:
For now, this is done using wrappers in static C files.
Alternatively (preferably), we should just use a better error handling mechanism.
The text was updated successfully, but these errors were encountered: