1*47940Sbostic /*- 2*47940Sbostic * Copyright (c) 1980 The Regents of the University of California. 3*47940Sbostic * All rights reserved. 4*47940Sbostic * 5*47940Sbostic * %sccs.include.proprietary.c% 6*47940Sbostic * 7*47940Sbostic * @(#)sigframe.h 5.2 (Berkeley) 04/12/91 8*47940Sbostic */ 9*47940Sbostic 1047936Sbostic /* 1147936Sbostic * Definition of signal handler frame. 1247936Sbostic */ 1347936Sbostic 1447936Sbostic struct sigframe { 1547936Sbostic int sf_signum; 1647936Sbostic int sf_code; 1747936Sbostic struct sigcontext *sf_scp; 1847936Sbostic int (*sf_handler)(); 1947936Sbostic int r1; 2047936Sbostic int r0; 2147936Sbostic struct sigcontext *sf_scpcopy; 2247936Sbostic }; 2347936Sbostic 24