11.17Sthorpej/* $NetBSD: signal.h,v 1.17 2021/10/29 04:14:44 thorpej Exp $ */ 21.1Sitojun 31.1Sitojun/* 41.1Sitojun * Copyright (c) 1982, 1986, 1989, 1991 Regents of the University of California. 51.1Sitojun * All rights reserved. 61.1Sitojun * 71.1Sitojun * Redistribution and use in source and binary forms, with or without 81.1Sitojun * modification, are permitted provided that the following conditions 91.1Sitojun * are met: 101.1Sitojun * 1. Redistributions of source code must retain the above copyright 111.1Sitojun * notice, this list of conditions and the following disclaimer. 121.1Sitojun * 2. Redistributions in binary form must reproduce the above copyright 131.1Sitojun * notice, this list of conditions and the following disclaimer in the 141.1Sitojun * documentation and/or other materials provided with the distribution. 151.7Sagc * 3. Neither the name of the University nor the names of its contributors 161.1Sitojun * may be used to endorse or promote products derived from this software 171.1Sitojun * without specific prior written permission. 181.1Sitojun * 191.1Sitojun * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 201.1Sitojun * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 211.1Sitojun * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 221.1Sitojun * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 231.1Sitojun * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 241.1Sitojun * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 251.1Sitojun * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 261.1Sitojun * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 271.1Sitojun * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 281.1Sitojun * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 291.1Sitojun * SUCH DAMAGE. 301.1Sitojun * 311.1Sitojun * @(#)signal.h 7.16 (Berkeley) 3/17/91 321.1Sitojun */ 331.1Sitojun 341.1Sitojun#ifndef _SH3_SIGNAL_H_ 351.2Such#define _SH3_SIGNAL_H_ 361.1Sitojun 371.6Sbjh21#include <sys/featuretest.h> 381.6Sbjh21 391.17Sthorpej#define __HAVE_STRUCT_SIGCONTEXT 401.17Sthorpej 411.1Sitojuntypedef int sig_atomic_t; 421.8Suwe 431.6Sbjh21#if defined(_NETBSD_SOURCE) 441.14Schristos#include <sys/sigtypes.h> 451.1Sitojun/* 461.1Sitojun * Information pushed on stack when a signal is delivered. 471.1Sitojun * This is used by the kernel to restore state following 481.1Sitojun * execution of the signal handler. It is also made available 491.1Sitojun * to the handler to allow it to restore state properly if 501.1Sitojun * a non-standard exit is performed. 511.1Sitojun */ 521.16Sthorpej#if defined(_KERNEL) 531.1Sitojunstruct sigcontext13 { 541.1Sitojun int sc_spc; 551.1Sitojun int sc_ssr; 561.1Sitojun int sc_pr; 571.1Sitojun int sc_r14; 581.1Sitojun int sc_r13; 591.1Sitojun int sc_r12; 601.1Sitojun int sc_r11; 611.1Sitojun int sc_r10; 621.1Sitojun int sc_r9; 631.1Sitojun int sc_r8; 641.1Sitojun int sc_r7; 651.1Sitojun int sc_r6; 661.1Sitojun int sc_r5; 671.1Sitojun int sc_r4; 681.1Sitojun int sc_r3; 691.1Sitojun int sc_r2; 701.1Sitojun int sc_r1; 711.1Sitojun int sc_r0; 721.1Sitojun int sc_r15; 731.1Sitojun 741.1Sitojun int sc_onstack; /* sigstack state to restore */ 751.1Sitojun int sc_mask; /* signal mask to restore (old style) */ 761.1Sitojun 771.3Such int sc_expevt; /* XXX should be above */ 781.1Sitojun int sc_err; 791.1Sitojun}; 801.16Sthorpej#endif /* _KERNEL */ 811.1Sitojun 821.16Sthorpej#if defined(_LIBC) || defined(_KERNEL) 831.1Sitojunstruct sigcontext { 841.1Sitojun int sc_spc; 851.1Sitojun int sc_ssr; 861.1Sitojun int sc_pr; 871.1Sitojun int sc_r14; 881.1Sitojun int sc_r13; 891.1Sitojun int sc_r12; 901.1Sitojun int sc_r11; 911.1Sitojun int sc_r10; 921.1Sitojun int sc_r9; 931.1Sitojun int sc_r8; 941.1Sitojun int sc_r7; 951.1Sitojun int sc_r6; 961.1Sitojun int sc_r5; 971.1Sitojun int sc_r4; 981.1Sitojun int sc_r3; 991.1Sitojun int sc_r2; 1001.1Sitojun int sc_r1; 1011.1Sitojun int sc_r0; 1021.1Sitojun int sc_r15; 1031.1Sitojun 1041.1Sitojun int sc_onstack; /* sigstack state to restore */ 1051.1Sitojun 1061.3Such int sc_expevt; /* XXX should be above */ 1071.1Sitojun int sc_err; 1081.1Sitojun 1091.1Sitojun sigset_t sc_mask; /* signal mask to restore (new style) */ 1101.1Sitojun}; 1111.16Sthorpej#endif /* _LIBC || _KERNEL */ 1121.1Sitojun 1131.6Sbjh21#endif /* _NETBSD_SOURCE */ 1141.1Sitojun#endif /* !_SH3_SIGNAL_H_ */ 115