HomeSort by: relevance | last modified time | path
    Searched refs:jmploc (Results 1 - 9 of 9) sorted by relevancy

  /src/bin/sh/
main.h 39 extern struct jmploc main_handler; /* top level exception handler */
error.h 54 * to an inner scope, set handler to point to a jmploc structure for the
60 struct jmploc { struct
67 extern struct jmploc *handler;
121 #define setjmp(jmploc) sigsetjmp((jmploc), 0)
122 #define longjmp(jmploc, val) siglongjmp((jmploc), (val))
var.c 432 struct jmploc jmploc; local
433 struct jmploc * const savehandler = handler;
436 if (setjmp(jmploc.loc))
439 handler = &jmploc;
449 struct jmploc jmploc; local
450 struct jmploc * const savehandler = handler;
453 if (!setjmp(jmploc.loc)) {
454 handler = &jmploc;
    [all...]
eval.c 638 struct jmploc jmploc; local
639 struct jmploc * const savehandler = handler;
656 if (setjmp(jmploc.loc)) {
676 handler = &jmploc;
895 struct jmploc jmploc; local
896 struct jmploc *volatile savehandler = NULL;
1152 if (setjmp(jmploc.loc)) {
1174 handler = &jmploc;
    [all...]
parser.c 1406 struct jmploc jmploc; local
1407 struct jmploc *const savehandler = handler;
1413 if (setjmp(jmploc.loc)) {
1430 handler = &jmploc;
2687 struct jmploc jmploc; local
2688 struct jmploc *const savehandler = handler;
2697 if (!setjmp(jmploc.loc)) {
2698 handler = &jmploc;
    [all...]
histedit.c 611 struct jmploc jmploc; local
612 struct jmploc *volatile savehandler;
686 if (setjmp(jmploc.loc)) {
697 handler = &jmploc;
error.c 68 struct jmploc *handler;
main.c 87 struct jmploc main_handler;
trap.c 907 struct jmploc loc;

Completed in 59 milliseconds