Lines Matching defs:sigcontext
284 struct sigcontext { struct
285 int sc_onstack; /* sigstack state to restore */
286 int sc_mask; /* signal mask to restore */
288 int sc_sp; /* sp to restore */
289 int sc_fp; /* fp to restore */
290 int sc_ap; /* ap to restore */
291 int sc_pc; /* pc to restore */
292 int sc_ps; /* psw to restore */
295 int sc_sp; /* sp to restore */
296 int sc_fp; /* fp to restore */
297 int sc_ap; /* ap to restore */
298 int sc_pc; /* pc to restore */
299 int sc_ps; /* psl to restore */
302 int sc_sp; /* sp to restore */
303 int sc_pc; /* pc to retore */
304 int sc_ps; /* psl to restore */
308 long sc_sp; /* sp to restore */
309 long sc_pc; /* pc to retore */
310 long sc_npc; /* next pc to restore */
311 long sc_psr; /* psr to restore */
313 long sc_g1; /* register that must be restored */
314 long sc_o0;
315 int sc_wbcnt; /* number of outstanding windows */
316 char *sc_spbuf[MAXWINDOW]; /* sp's for each wbuf */
317 long sc_wbuf[MAXWINDOW][16]; /* outstanding window save buffer */
343 void (*sv_handler)(int, int, struct sigcontext *, char *); argument