#include <config.h>
Include dependency graph for setjmp.h:
Go to the source code of this file.
Typedefs | |
typedef int | jmp_buf [6] |
Information stored for non-local jumps. | |
Functions | |
int | setjmp (jmp_buf env) |
Save execution context for non-local goto. | |
void | longjmp (jmp_buf env, int val) |
Non-local jump to saved machine context. |
Definition in file setjmp.h.
|
Information stored for non-local jumps. Stores the machine status for non-local jumps. The H8/300 CPU has the following state information:
|
|
Non-local jump to saved machine context. Restores a machine context as saved via setjmp.
|
|
Save execution context for non-local goto. Records the current machine status for a non-local goto. The saved status will be invalidated when returning from the stack frame where it was set.
|
brickOS is released under the
Mozilla Public License.
Original code copyright 1998-2002 by the authors. |