11708Sstevel/*-
21708Sstevel * Copyright (c) 1986, 1989, 1991, 1993
31708Sstevel *      The Regents of the University of California.  All rights reserved.
41708Sstevel *
51708Sstevel * Redistribution and use in source and binary forms, with or without
61708Sstevel * modification, are permitted provided that the following conditions
71708Sstevel * are met:
81708Sstevel * 1. Redistributions of source code must retain the above copyright
91708Sstevel *    notice, this list of conditions and the following disclaimer.
101708Sstevel * 2. Redistributions in binary form must reproduce the above copyright
111708Sstevel *    notice, this list of conditions and the following disclaimer in the
121708Sstevel *    documentation and/or other materials provided with the distribution.
131708Sstevel * 4. Neither the name of the University nor the names of its contributors
141708Sstevel *    may be used to endorse or promote products derived from this software
151708Sstevel *    without specific prior written permission.
161708Sstevel *
171708Sstevel * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
181708Sstevel * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
191708Sstevel * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
201708Sstevel * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
211708Sstevel * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
221708Sstevel * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2313019SMichael.Bergknoff@Oracle.COM * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
241708Sstevel * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
251708Sstevel * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
261708Sstevel * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
271708Sstevel * SUCH DAMAGE.
281708Sstevel *
291708Sstevel *      @(#)signal.h    8.1 (Berkeley) 6/11/93
301708Sstevel * 	from: FreeBSD: src/sys/i386/include/signal.h,v 1.13 2000/11/09
311708Sstevel * $FreeBSD$
321708Sstevel */
331708Sstevel
341708Sstevel#ifndef	_MACHINE_SIGNAL_H_
351708Sstevel#define	_MACHINE_SIGNAL_H_
361708Sstevel
371708Sstevel#include <sys/cdefs.h>
381708Sstevel
391708Ssteveltypedef	long sig_atomic_t;
401708Sstevel
411708Sstevel#if __BSD_VISIBLE
421708Sstevelstruct sigcontext {
431708Sstevel	int	_dummy;
441708Sstevel};
451708Sstevel#endif /* __BSD_VISIBLE */
461708Sstevel
471708Sstevel#endif /* !_MACHINE_SIGNAL_H_ */
481708Sstevel