JMP_BUF Type (Array)

setjmp.h

typedef struct {
unsigned long D2, D3, D4, D5, D6, D7;
unsigned long A2, A3, A4, A5, A6, A7;
unsigned long PC;
} JMP_BUF [1];

A type for capturing a task state.

JMP_BUF is a type designed for capturing a task state needed for the setjmp and longjmp commands.