2 Copyright © 2015, The AROS Development Team. All rights reserved.
5 Desc: POSIX.1-2008 function siglongjmp()
9 /******************************************************************************
21 Save the current context so that you can return to it later.
24 env - The context/environment to restore
25 val - This value is returned by setjmp() when you return to the
26 saved context. You cannot return 0. If val is 0, then
27 setjmp() returns with 1.
30 This function doesn't return.
41 ... this code is executed after setjmp() returns ...
43 // This is no good example on how to use this function
44 // You should not do that
52 ... this code is executed if you call siglongjmp(env) ...
62 ******************************************************************************/
64 #error siglongjmp has to be implemented for each cpu