182902Sjake/*-
282902Sjake * Copyright (c) 1999 Marcel Moolenaar
382902Sjake * All rights reserved.
482902Sjake *
582902Sjake * Redistribution and use in source and binary forms, with or without
682902Sjake * modification, are permitted provided that the following conditions
782902Sjake * are met:
882902Sjake * 1. Redistributions of source code must retain the above copyright
982902Sjake *    notice, this list of conditions and the following disclaimer
1082902Sjake *    in this position and unchanged.
1182902Sjake * 2. Redistributions in binary form must reproduce the above copyright
1282902Sjake *    notice, this list of conditions and the following disclaimer in the
1382902Sjake *    documentation and/or other materials provided with the distribution.
1482902Sjake * 3. The name of the author may not be used to endorse or promote products
1582902Sjake *    derived from this software without specific prior written permission.
1682902Sjake *
1782902Sjake * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
1882902Sjake * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
1982902Sjake * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
2082902Sjake * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
2182902Sjake * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
2282902Sjake * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2382902Sjake * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
2482902Sjake * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2582902Sjake * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
2682902Sjake * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2782902Sjake *
2882902Sjake *	from:	FreeBSD: src/sys/alpha/include/sigframe.h,v 1.1 1999/09/29
2982902Sjake * $FreeBSD$
3082902Sjake */
3182902Sjake
3282902Sjake#ifndef _MACHINE_SIGFRAME_H_
3382902Sjake#define _MACHINE_SIGFRAME_H_ 1
3482902Sjake
3582902Sjakestruct sigframe {
3682902Sjake	ucontext_t	sf_uc;
3782902Sjake	siginfo_t	sf_si;
3882902Sjake};
3982902Sjake
4082902Sjake#endif /* _MACHINE_SIGFRAME_H_ */
41