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
Dans la doc, il est mis pour setjmp que
setjmp
The stack context will be invalidated if the function which called setjmp() returns.
Pourtant, dans l'exemple du syllabus, on a
f(); g();
comme c'est dans f qu'on fait setjmp et dans g qu'on fait longjmp, f a déjà retourné lorsqu'on appelle longjmp.
f
g
longjmp
The text was updated successfully, but these errors were encountered:
Je pense en effet qu'il faudrait appeler g() dans f(), non ?
Sorry, something went wrong.
No branches or pull requests
Dans la doc, il est mis pour
setjmp
quePourtant, dans l'exemple du syllabus, on a
comme c'est dans
f
qu'on faitsetjmp
et dansg
qu'on faitlongjmp
,f
a déjà retourné lorsqu'on appellelongjmp
.The text was updated successfully, but these errors were encountered: