1 /* setjmp and longjmp. Use of these functions is deprecated. */
3 FILE_LICENCE ( GPL2_OR_LATER )
9 /**************************************************************************
10 SETJMP - Save stack context for non-local goto
11 **************************************************************************/
14 movl 4(%esp),%ecx /* jmpbuf */
15 movl 0(%esp),%edx /* return address */
25 /**************************************************************************
26 LONGJMP - Non-local jump to a saved stack context
27 **************************************************************************/
30 movl 4(%esp),%edx /* jumpbuf */
31 movl 8(%esp),%eax /* result */