_sigsetjmp.c

Go to the documentation of this file.
00001 #include <lib.h>
00002 #include <sys/sigcontext.h>
00003 #include <setjmp.h>
00004 
00005 PUBLIC void siglongjmp(env, val)
00006 sigjmp_buf env;
00007 int val;
00008 {
00009   if (env[0].__flags & SC_SIGCONTEXT)
00010         longjmp(env, val);
00011   else
00012         _longjmp(env, val);
00013 }

Generated on Fri Apr 14 22:57:27 2006 for minix by  doxygen 1.4.6