Guest User

Untitled

a guest
Dec 14th, 2023
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.51 KB | None | 0 0
  1. $ find . -name "*.c" -exec grep -H "setjmp" {} \;
  2. ./src/model/val_to_term.c: t = setjmp(convert->env);
  3. ./src/model/term_to_val.c: v = setjmp(convert->env);
  4. ./src/model/model_eval.c: v = setjmp(eval->env);
  5. ./src/model/literal_collector.c: u = setjmp(collect->env);
  6. ./src/frontend/smt1/smt_parser.c:#include <setjmp.h>
  7. ./src/frontend/smt1/smt_parser.c: exception = setjmp(tstack->env);
  8. ./src/frontend/smt2/smt2_parser.c:#include <setjmp.h>
  9. ./src/frontend/smt2/smt2_parser.c: exception = setjmp(tstack->env);
  10. ./src/frontend/yices/yices_parser.c:#include <setjmp.h>
  11. ./src/frontend/yices/yices_parser.c: exception = setjmp(tstack->env);
  12. ./src/context/symmetry_breaking.c: code = setjmp(s->env);
  13. ./src/context/context.c: code = setjmp(ctx->env);
  14. ./src/context/context.c: code = setjmp(ctx->env);
  15. ./src/context/context.c: code = setjmp(ctx->env);
  16. ./src/terms/full_subst.c: code = setjmp(subst->env);
  17. ./src/terms/term_substitution.c: code = setjmp(subst->env);
  18. ./tests/unit/test_term_stack.c:#include <setjmp.h>
  19. ./tests/unit/test_term_stack.c: exception = setjmp(stack.env);
  20. ./tests/unit/test_api14.c:#include <setjmp.h>
  21. ./tests/unit/test_api14.c: * Out-of-memory handling using setjmp/longjmp
  22. ./tests/unit/test_api14.c: if (setjmp(buffer) == 0) {
  23. ./tests/unit/test_longjmp.c:#include <setjmp.h>
  24. ./tests/unit/test_longjmp.c: printf("calling setjmp\n\n");
  25. ./tests/unit/test_longjmp.c: code = setjmp(env);
  26. ./tests/unit/test_longjmp.c: printf("calling setjmp\n\n");
  27. ./tests/unit/test_longjmp.c: code = setjmp(env);
  28.  
Advertisement
Add Comment
Please, Sign In to add comment