1*47936Sbostic /* 2*47936Sbostic * Definition of signal handler frame. 3*47936Sbostic */ 4*47936Sbostic 5*47936Sbostic struct sigframe { 6*47936Sbostic int sf_signum; 7*47936Sbostic int sf_code; 8*47936Sbostic struct sigcontext *sf_scp; 9*47936Sbostic int (*sf_handler)(); 10*47936Sbostic int r1; 11*47936Sbostic int r0; 12*47936Sbostic struct sigcontext *sf_scpcopy; 13*47936Sbostic }; 14*47936Sbostic 15