Home
last modified time | relevance | path

Searched refs:utSetjmpDepth (Results 1 – 5 of 5) sorted by relevance

/dports/devel/datadraw/datadraw3.1.1/util/
H A Dutcygwin.c46 utSetjmpDepth--; in utLongjmp()
47 if (utSetjmpDepth < 0 || utSetjmpDepth > UT_MAX_SETJMP_DEPTH) { in utLongjmp()
50 longjmp(utJmpBuf[utSetjmpDepth], 1); in utLongjmp()
H A Dutunix.c57 utSetjmpDepth--; in utLongjmp()
58 if (utSetjmpDepth < 0 || utSetjmpDepth > UT_MAX_SETJMP_DEPTH) { in utLongjmp()
61 longjmp(utJmpBuf[utSetjmpDepth], 1); in utLongjmp()
H A Dddutil.h262 extern int16 utSetjmpDepth;
265 #define utUnsetjmp() (utSetjmpDepth--,\
266 !strcmp(utSetjmpFile[utSetjmpDepth],__FILE__) ||\
268 #define utSetjmp() (++utSetjmpDepth,\
269 utSetjmpFile[utSetjmpDepth - 1] = __FILE__,\
270 utSetjmpLine[utSetjmpDepth - 1] = __LINE__,\
271 setjmp(utJmpBuf[utSetjmpDepth - 1]))
H A Dutnt.c21 utSetjmpDepth--; in utLongjmp()
22 if (utSetjmpDepth < 0 || utSetjmpDepth > UT_MAX_SETJMP_DEPTH) { in utLongjmp()
25 longjmp(utJmpBuf[utSetjmpDepth], 1); in utLongjmp()
H A Dutil.c39 int16 utSetjmpDepth = 0; variable
789 if(utSetjmpDepth > 0 && utSetjmpDepth < UT_MAX_SETJMP_DEPTH) { in utStop()
791 utSetjmpFile[utSetjmpDepth - 1], in utStop()
792 utSetjmpLine[utSetjmpDepth - 1]); in utStop()
793 } else if(utSetjmpDepth != 0) { in utStop()
872 utSetjmpDepth = 0; in utStart()