ref: c9f54b0264a59179404644ce9f88fc748ad0a9a9
dir: /Plan9/sparc/include/emu.h/
/* * system- and machine-specific declarations for emu: * floating-point save and restore, signal handling primitive, and * implementation of the current-process variable `up'. */ extern Proc** Xup; #define up (*Xup) typedef struct FPU FPU; /* * This structure must agree with FPsave and FPrestore asm routines */ struct FPU { ulong fsr; }; typedef jmp_buf osjmpbuf; #define ossetjmp(buf) setjmp(buf)