signal.h revision 1.15
11.15Sthorpej/* $NetBSD: signal.h,v 1.15 2003/01/17 23:10:29 thorpej 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.1Sbrezak * 3. All advertising materials mentioning features or use of this software 161.1Sbrezak * must display the following acknowledgement: 171.1Sbrezak * This product includes software developed by the University of 181.1Sbrezak * California, Berkeley and its contributors. 191.1Sbrezak * 4. Neither the name of the University nor the names of its contributors 201.1Sbrezak * may be used to endorse or promote products derived from this software 211.1Sbrezak * without specific prior written permission. 221.1Sbrezak * 231.1Sbrezak * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 241.1Sbrezak * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 251.1Sbrezak * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 261.1Sbrezak * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 271.1Sbrezak * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 281.1Sbrezak * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 291.1Sbrezak * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 301.1Sbrezak * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 311.1Sbrezak * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 321.1Sbrezak * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 331.1Sbrezak * SUCH DAMAGE. 341.1Sbrezak * 351.3Scgd * @(#)signal.h 7.16 (Berkeley) 3/17/91 361.1Sbrezak */ 371.1Sbrezak 381.2Smycroft#ifndef _I386_SIGNAL_H_ 391.2Smycroft#define _I386_SIGNAL_H_ 401.1Sbrezak 411.1Sbrezaktypedef int sig_atomic_t; 421.1Sbrezak 431.7Skleink#if !defined(_ANSI_SOURCE) && !defined(_POSIX_C_SOURCE) && \ 441.7Skleink !defined(_XOPEN_SOURCE) 451.1Sbrezak/* 461.1Sbrezak * Get the "code" values 471.1Sbrezak */ 481.1Sbrezak#include <machine/trap.h> 491.1Sbrezak 501.1Sbrezak/* 511.1Sbrezak * Information pushed on stack when a signal is delivered. 521.1Sbrezak * This is used by the kernel to restore state following 531.1Sbrezak * execution of the signal handler. It is also made available 541.1Sbrezak * to the handler to allow it to restore state properly if 551.1Sbrezak * a non-standard exit is performed. 561.1Sbrezak */ 571.12Sthorpej#if defined(__LIBC12_SOURCE__) || defined(_KERNEL) 581.10Smycroftstruct sigcontext13 { 591.5Smycroft int sc_gs; 601.5Smycroft int sc_fs; 611.2Smycroft int sc_es; 621.2Smycroft int sc_ds; 631.2Smycroft int sc_edi; 641.2Smycroft int sc_esi; 651.2Smycroft int sc_ebp; 661.2Smycroft int sc_ebx; 671.2Smycroft int sc_edx; 681.2Smycroft int sc_ecx; 691.2Smycroft int sc_eax; 701.6Smycroft /* XXX */ 711.2Smycroft int sc_eip; 721.2Smycroft int sc_cs; 731.2Smycroft int sc_eflags; 741.2Smycroft int sc_esp; 751.2Smycroft int sc_ss; 761.5Smycroft 771.5Smycroft int sc_onstack; /* sigstack state to restore */ 781.13Sthorpej int sc_mask; /* signal mask to restore (old style) */ 791.6Smycroft 801.6Smycroft int sc_trapno; /* XXX should be above */ 811.6Smycroft int sc_err; 821.10Smycroft}; 831.10Smycroft#endif 841.9Smycroft 851.10Smycroftstruct sigcontext { 861.10Smycroft int sc_gs; 871.10Smycroft int sc_fs; 881.10Smycroft int sc_es; 891.10Smycroft int sc_ds; 901.10Smycroft int sc_edi; 911.10Smycroft int sc_esi; 921.10Smycroft int sc_ebp; 931.10Smycroft int sc_ebx; 941.10Smycroft int sc_edx; 951.10Smycroft int sc_ecx; 961.10Smycroft int sc_eax; 971.10Smycroft /* XXX */ 981.10Smycroft int sc_eip; 991.10Smycroft int sc_cs; 1001.10Smycroft int sc_eflags; 1011.10Smycroft int sc_esp; 1021.10Smycroft int sc_ss; 1031.10Smycroft 1041.10Smycroft int sc_onstack; /* sigstack state to restore */ 1051.14Sthorpej int __sc_mask13; /* signal mask to restore (old style) */ 1061.10Smycroft 1071.10Smycroft int sc_trapno; /* XXX should be above */ 1081.10Smycroft int sc_err; 1091.10Smycroft 1101.10Smycroft sigset_t sc_mask; /* signal mask to restore (new style) */ 1111.1Sbrezak}; 1121.15Sthorpej 1131.15Sthorpej/* 1141.15Sthorpej * The following macros are used to convert from a ucontext to sigcontext, 1151.15Sthorpej * and vice-versa. This is for building a sigcontext to deliver to old-style 1161.15Sthorpej * signal handlers, and converting back (in the event the handler modifies 1171.15Sthorpej * the context). 1181.15Sthorpej */ 1191.15Sthorpej#define _MCONTEXT_TO_SIGCONTEXT(uc, sc) \ 1201.15Sthorpejdo { \ 1211.15Sthorpej (sc)->sc_gs = (uc)->uc_mcontext.__gregs[_REG_GS]; \ 1221.15Sthorpej (sc)->sc_fs = (uc)->uc_mcontext.__gregs[_REG_FS]; \ 1231.15Sthorpej (sc)->sc_es = (uc)->uc_mcontext.__gregs[_REG_ES]; \ 1241.15Sthorpej (sc)->sc_ds = (uc)->uc_mcontext.__gregs[_REG_DS]; \ 1251.15Sthorpej (sc)->sc_edi = (uc)->uc_mcontext.__gregs[_REG_EDI]; \ 1261.15Sthorpej (sc)->sc_esi = (uc)->uc_mcontext.__gregs[_REG_ESI]; \ 1271.15Sthorpej (sc)->sc_ebp = (uc)->uc_mcontext.__gregs[_REG_EBP]; \ 1281.15Sthorpej (sc)->sc_ebx = (uc)->uc_mcontext.__gregs[_REG_EBX]; \ 1291.15Sthorpej (sc)->sc_edx = (uc)->uc_mcontext.__gregs[_REG_EDX]; \ 1301.15Sthorpej (sc)->sc_ecx = (uc)->uc_mcontext.__gregs[_REG_ECX]; \ 1311.15Sthorpej (sc)->sc_eax = (uc)->uc_mcontext.__gregs[_REG_EAX]; \ 1321.15Sthorpej (sc)->sc_eip = (uc)->uc_mcontext.__gregs[_REG_EIP]; \ 1331.15Sthorpej (sc)->sc_cs = (uc)->uc_mcontext.__gregs[_REG_CS]; \ 1341.15Sthorpej (sc)->sc_eflags = (uc)->uc_mcontext.__gregs[_REG_EFL]; \ 1351.15Sthorpej (sc)->sc_esp = (uc)->uc_mcontext.__gregs[_REG_UESP]; \ 1361.15Sthorpej (sc)->sc_ss = (uc)->uc_mcontext.__gregs[_REG_SS]; \ 1371.15Sthorpej (sc)->sc_trapno = (uc)->uc_mcontext.__gregs[_REG_TRAPNO]; \ 1381.15Sthorpej (sc)->sc_err = (uc)->uc_mcontext.__gregs[_REG_ERR]; \ 1391.15Sthorpej} while (/*CONSTCOND*/0) 1401.15Sthorpej 1411.15Sthorpej#define _SIGCONTEXT_TO_MCONTEXT(sc, uc) \ 1421.15Sthorpejdo { \ 1431.15Sthorpej (uc)->uc_mcontext.__gregs[_REG_GS] = (sc)->sc_gs; \ 1441.15Sthorpej (uc)->uc_mcontext.__gregs[_REG_FS] = (sc)->sc_fs; \ 1451.15Sthorpej (uc)->uc_mcontext.__gregs[_REG_ES] = (sc)->sc_es; \ 1461.15Sthorpej (uc)->uc_mcontext.__gregs[_REG_DS] = (sc)->sc_ds; \ 1471.15Sthorpej (uc)->uc_mcontext.__gregs[_REG_EDI] = (sc)->sc_edi; \ 1481.15Sthorpej (uc)->uc_mcontext.__gregs[_REG_ESI] = (sc)->sc_esi; \ 1491.15Sthorpej (uc)->uc_mcontext.__gregs[_REG_EBP] = (sc)->sc_ebp; \ 1501.15Sthorpej (uc)->uc_mcontext.__gregs[_REG_EBX] = (sc)->sc_ebx; \ 1511.15Sthorpej (uc)->uc_mcontext.__gregs[_REG_EDX] = (sc)->sc_edx; \ 1521.15Sthorpej (uc)->uc_mcontext.__gregs[_REG_ECX] = (sc)->sc_ecx; \ 1531.15Sthorpej (uc)->uc_mcontext.__gregs[_REG_EAX] = (sc)->sc_eax; \ 1541.15Sthorpej (uc)->uc_mcontext.__gregs[_REG_EIP] = (sc)->sc_eip; \ 1551.15Sthorpej (uc)->uc_mcontext.__gregs[_REG_CS] = (sc)->sc_cs; \ 1561.15Sthorpej (uc)->uc_mcontext.__gregs[_REG_EFL] = (sc)->sc_eflags; \ 1571.15Sthorpej (uc)->uc_mcontext.__gregs[_REG_UESP] = (sc)->sc_esp; \ 1581.15Sthorpej (uc)->uc_mcontext.__gregs[_REG_UESP] = (sc)->sc_esp; \ 1591.15Sthorpej (uc)->uc_mcontext.__gregs[_REG_SS] = (sc)->sc_ss; \ 1601.15Sthorpej (uc)->uc_mcontext.__gregs[_REG_TRAPNO] = (sc)->sc_trapno; \ 1611.15Sthorpej (uc)->uc_mcontext.__gregs[_REG_ERR] = (sc)->sc_err; \ 1621.15Sthorpej} while (/*CONSTCOND*/0) 1631.1Sbrezak 1641.1Sbrezak#define sc_sp sc_esp 1651.1Sbrezak#define sc_fp sc_ebp 1661.1Sbrezak#define sc_pc sc_eip 1671.2Smycroft#define sc_ps sc_eflags 1681.1Sbrezak 1691.7Skleink#endif /* !_ANSI_SOURCE && !_POSIX_C_SOURCE && !_XOPEN_SOURCE */ 1701.4Sjtc#endif /* !_I386_SIGNAL_H_ */ 171