signal.h revision 1.18
11.18Schristos/*	$NetBSD: signal.h,v 1.18 2003/09/06 22:05:49 christos Exp $	*/
21.3Scgd
31.1Sbrezak/*
41.1Sbrezak * Copyright (c) 1982, 1986, 1989, 1991 Regents of the University of California.
51.1Sbrezak * All rights reserved.
61.1Sbrezak *
71.1Sbrezak * Redistribution and use in source and binary forms, with or without
81.1Sbrezak * modification, are permitted provided that the following conditions
91.1Sbrezak * are met:
101.1Sbrezak * 1. Redistributions of source code must retain the above copyright
111.1Sbrezak *    notice, this list of conditions and the following disclaimer.
121.1Sbrezak * 2. Redistributions in binary form must reproduce the above copyright
131.1Sbrezak *    notice, this list of conditions and the following disclaimer in the
141.1Sbrezak *    documentation and/or other materials provided with the distribution.
151.17Sagc * 3. Neither the name of the University nor the names of its contributors
161.1Sbrezak *    may be used to endorse or promote products derived from this software
171.1Sbrezak *    without specific prior written permission.
181.1Sbrezak *
191.1Sbrezak * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
201.1Sbrezak * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
211.1Sbrezak * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
221.1Sbrezak * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
231.1Sbrezak * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
241.1Sbrezak * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
251.1Sbrezak * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
261.1Sbrezak * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
271.1Sbrezak * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
281.1Sbrezak * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
291.1Sbrezak * SUCH DAMAGE.
301.1Sbrezak *
311.3Scgd *	@(#)signal.h	7.16 (Berkeley) 3/17/91
321.1Sbrezak */
331.1Sbrezak
341.2Smycroft#ifndef _I386_SIGNAL_H_
351.2Smycroft#define _I386_SIGNAL_H_
361.1Sbrezak
371.16Sbjh21#include <sys/featuretest.h>
381.16Sbjh21
391.1Sbrezaktypedef int sig_atomic_t;
401.18Schristos
411.18Schristos#define __HAVE_SIGINFO
421.1Sbrezak
431.16Sbjh21#if defined(_NETBSD_SOURCE)
441.1Sbrezak/*
451.1Sbrezak * Get the "code" values
461.1Sbrezak */
471.1Sbrezak#include <machine/trap.h>
481.1Sbrezak
491.1Sbrezak/*
501.1Sbrezak * Information pushed on stack when a signal is delivered.
511.1Sbrezak * This is used by the kernel to restore state following
521.1Sbrezak * execution of the signal handler.  It is also made available
531.1Sbrezak * to the handler to allow it to restore state properly if
541.1Sbrezak * a non-standard exit is performed.
551.1Sbrezak */
561.12Sthorpej#if defined(__LIBC12_SOURCE__) || defined(_KERNEL)
571.10Smycroftstruct sigcontext13 {
581.5Smycroft	int	sc_gs;
591.5Smycroft	int	sc_fs;
601.2Smycroft	int	sc_es;
611.2Smycroft	int	sc_ds;
621.2Smycroft	int	sc_edi;
631.2Smycroft	int	sc_esi;
641.2Smycroft	int	sc_ebp;
651.2Smycroft	int	sc_ebx;
661.2Smycroft	int	sc_edx;
671.2Smycroft	int	sc_ecx;
681.2Smycroft	int	sc_eax;
691.6Smycroft	/* XXX */
701.2Smycroft	int	sc_eip;
711.2Smycroft	int	sc_cs;
721.2Smycroft	int	sc_eflags;
731.2Smycroft	int	sc_esp;
741.2Smycroft	int	sc_ss;
751.5Smycroft
761.5Smycroft	int	sc_onstack;		/* sigstack state to restore */
771.13Sthorpej	int	sc_mask;		/* signal mask to restore (old style) */
781.6Smycroft
791.6Smycroft	int	sc_trapno;		/* XXX should be above */
801.6Smycroft	int	sc_err;
811.10Smycroft};
821.10Smycroft#endif
831.9Smycroft
841.10Smycroftstruct sigcontext {
851.10Smycroft	int	sc_gs;
861.10Smycroft	int	sc_fs;
871.10Smycroft	int	sc_es;
881.10Smycroft	int	sc_ds;
891.10Smycroft	int	sc_edi;
901.10Smycroft	int	sc_esi;
911.10Smycroft	int	sc_ebp;
921.10Smycroft	int	sc_ebx;
931.10Smycroft	int	sc_edx;
941.10Smycroft	int	sc_ecx;
951.10Smycroft	int	sc_eax;
961.10Smycroft	/* XXX */
971.10Smycroft	int	sc_eip;
981.10Smycroft	int	sc_cs;
991.10Smycroft	int	sc_eflags;
1001.10Smycroft	int	sc_esp;
1011.10Smycroft	int	sc_ss;
1021.10Smycroft
1031.10Smycroft	int	sc_onstack;		/* sigstack state to restore */
1041.14Sthorpej	int	__sc_mask13;		/* signal mask to restore (old style) */
1051.10Smycroft
1061.10Smycroft	int	sc_trapno;		/* XXX should be above */
1071.10Smycroft	int	sc_err;
1081.10Smycroft
1091.10Smycroft	sigset_t sc_mask;		/* signal mask to restore (new style) */
1101.1Sbrezak};
1111.15Sthorpej
1121.15Sthorpej/*
1131.15Sthorpej * The following macros are used to convert from a ucontext to sigcontext,
1141.15Sthorpej * and vice-versa.  This is for building a sigcontext to deliver to old-style
1151.15Sthorpej * signal handlers, and converting back (in the event the handler modifies
1161.15Sthorpej * the context).
1171.15Sthorpej */
1181.15Sthorpej#define	_MCONTEXT_TO_SIGCONTEXT(uc, sc)					\
1191.15Sthorpejdo {									\
1201.15Sthorpej	(sc)->sc_gs  = (uc)->uc_mcontext.__gregs[_REG_GS];		\
1211.15Sthorpej	(sc)->sc_fs  = (uc)->uc_mcontext.__gregs[_REG_FS];		\
1221.15Sthorpej	(sc)->sc_es  = (uc)->uc_mcontext.__gregs[_REG_ES];		\
1231.15Sthorpej	(sc)->sc_ds  = (uc)->uc_mcontext.__gregs[_REG_DS];		\
1241.15Sthorpej	(sc)->sc_edi = (uc)->uc_mcontext.__gregs[_REG_EDI];		\
1251.15Sthorpej	(sc)->sc_esi = (uc)->uc_mcontext.__gregs[_REG_ESI];		\
1261.15Sthorpej	(sc)->sc_ebp = (uc)->uc_mcontext.__gregs[_REG_EBP];		\
1271.15Sthorpej	(sc)->sc_ebx = (uc)->uc_mcontext.__gregs[_REG_EBX];		\
1281.15Sthorpej	(sc)->sc_edx = (uc)->uc_mcontext.__gregs[_REG_EDX];		\
1291.15Sthorpej	(sc)->sc_ecx = (uc)->uc_mcontext.__gregs[_REG_ECX];		\
1301.15Sthorpej	(sc)->sc_eax = (uc)->uc_mcontext.__gregs[_REG_EAX];		\
1311.15Sthorpej	(sc)->sc_eip = (uc)->uc_mcontext.__gregs[_REG_EIP];		\
1321.15Sthorpej	(sc)->sc_cs  = (uc)->uc_mcontext.__gregs[_REG_CS];		\
1331.15Sthorpej	(sc)->sc_eflags = (uc)->uc_mcontext.__gregs[_REG_EFL];		\
1341.15Sthorpej	(sc)->sc_esp = (uc)->uc_mcontext.__gregs[_REG_UESP];		\
1351.15Sthorpej	(sc)->sc_ss  = (uc)->uc_mcontext.__gregs[_REG_SS];		\
1361.15Sthorpej	(sc)->sc_trapno = (uc)->uc_mcontext.__gregs[_REG_TRAPNO];	\
1371.15Sthorpej	(sc)->sc_err = (uc)->uc_mcontext.__gregs[_REG_ERR];		\
1381.15Sthorpej} while (/*CONSTCOND*/0)
1391.15Sthorpej
1401.15Sthorpej#define	_SIGCONTEXT_TO_MCONTEXT(sc, uc)					\
1411.15Sthorpejdo {									\
1421.15Sthorpej	(uc)->uc_mcontext.__gregs[_REG_GS]  = (sc)->sc_gs;		\
1431.15Sthorpej	(uc)->uc_mcontext.__gregs[_REG_FS]  = (sc)->sc_fs;		\
1441.15Sthorpej	(uc)->uc_mcontext.__gregs[_REG_ES]  = (sc)->sc_es;		\
1451.15Sthorpej	(uc)->uc_mcontext.__gregs[_REG_DS]  = (sc)->sc_ds;		\
1461.15Sthorpej	(uc)->uc_mcontext.__gregs[_REG_EDI] = (sc)->sc_edi;		\
1471.15Sthorpej	(uc)->uc_mcontext.__gregs[_REG_ESI] = (sc)->sc_esi;		\
1481.15Sthorpej	(uc)->uc_mcontext.__gregs[_REG_EBP] = (sc)->sc_ebp;		\
1491.15Sthorpej	(uc)->uc_mcontext.__gregs[_REG_EBX] = (sc)->sc_ebx;		\
1501.15Sthorpej	(uc)->uc_mcontext.__gregs[_REG_EDX] = (sc)->sc_edx;		\
1511.15Sthorpej	(uc)->uc_mcontext.__gregs[_REG_ECX] = (sc)->sc_ecx;		\
1521.15Sthorpej	(uc)->uc_mcontext.__gregs[_REG_EAX] = (sc)->sc_eax;		\
1531.15Sthorpej	(uc)->uc_mcontext.__gregs[_REG_EIP] = (sc)->sc_eip;		\
1541.15Sthorpej	(uc)->uc_mcontext.__gregs[_REG_CS]  = (sc)->sc_cs;		\
1551.15Sthorpej	(uc)->uc_mcontext.__gregs[_REG_EFL] = (sc)->sc_eflags;		\
1561.15Sthorpej	(uc)->uc_mcontext.__gregs[_REG_UESP] = (sc)->sc_esp;		\
1571.15Sthorpej	(uc)->uc_mcontext.__gregs[_REG_UESP] = (sc)->sc_esp;		\
1581.15Sthorpej	(uc)->uc_mcontext.__gregs[_REG_SS]  = (sc)->sc_ss;		\
1591.15Sthorpej	(uc)->uc_mcontext.__gregs[_REG_TRAPNO] = (sc)->sc_trapno;	\
1601.15Sthorpej	(uc)->uc_mcontext.__gregs[_REG_ERR] = (sc)->sc_err;		\
1611.15Sthorpej} while (/*CONSTCOND*/0)
1621.1Sbrezak
1631.1Sbrezak#define sc_sp sc_esp
1641.1Sbrezak#define sc_fp sc_ebp
1651.1Sbrezak#define sc_pc sc_eip
1661.2Smycroft#define sc_ps sc_eflags
1671.1Sbrezak
1681.16Sbjh21#endif	/* _NETBSD_SOURCE */
1691.4Sjtc#endif	/* !_I386_SIGNAL_H_ */
170