197403Sobrien/*-
297403Sobrien * Copyright (c) 1999 Marcel Moolenaar
3169691Skan * All rights reserved.
4169691Skan *
597403Sobrien * Redistribution and use in source and binary forms, with or without
697403Sobrien * modification, are permitted provided that the following conditions
797403Sobrien * are met:
897403Sobrien * 1. Redistributions of source code must retain the above copyright
997403Sobrien *    notice, this list of conditions and the following disclaimer
1097403Sobrien *    in this position and unchanged.
1197403Sobrien * 2. Redistributions in binary form must reproduce the above copyright
1297403Sobrien *    notice, this list of conditions and the following disclaimer in the
1397403Sobrien *    documentation and/or other materials provided with the distribution.
1497403Sobrien * 3. The name of the author may not be used to endorse or promote products
1597403Sobrien *    derived from this software without specific prior written permission.
1697403Sobrien *
1797403Sobrien * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
1897403Sobrien * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19169691Skan * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
2097403Sobrien * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
2197403Sobrien * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
2297403Sobrien * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2397403Sobrien * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
2497403Sobrien * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2597403Sobrien * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
2697403Sobrien * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2797403Sobrien *
2897403Sobrien * $FreeBSD$
2997403Sobrien */
3097403Sobrien
3197403Sobrien#ifndef _MACHINE_SIGFRAME_H_
3297403Sobrien#define _MACHINE_SIGFRAME_H_ 1
3397403Sobrien
3497403Sobrienstruct sigframe {
3597403Sobrien	ucontext_t	sf_uc;
3697403Sobrien	siginfo_t	sf_si;
3797403Sobrien};
3897403Sobrien
3997403Sobrien#endif /* _MACHINE_SIGFRAME_H_ */
4097403Sobrien