1*c336094cSWarner Losh /* 2*c336094cSWarner Losh * Intel i386 sigcode for bsd-user 3*c336094cSWarner Losh * 4*c336094cSWarner Losh * Copyright (c) 2013 Stacey D. Son 5*c336094cSWarner Losh * 6*c336094cSWarner Losh * This program is free software; you can redistribute it and/or modify 7*c336094cSWarner Losh * it under the terms of the GNU General Public License as published by 8*c336094cSWarner Losh * the Free Software Foundation; either version 2 of the License, or 9*c336094cSWarner Losh * (at your option) any later version. 10*c336094cSWarner Losh * 11*c336094cSWarner Losh * This program is distributed in the hope that it will be useful, 12*c336094cSWarner Losh * but WITHOUT ANY WARRANTY; without even the implied warranty of 13*c336094cSWarner Losh * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14*c336094cSWarner Losh * GNU General Public License for more details. 15*c336094cSWarner Losh * 16*c336094cSWarner Losh * You should have received a copy of the GNU General Public License 17*c336094cSWarner Losh * along with this program; if not, see <http://www.gnu.org/licenses/>. 18*c336094cSWarner Losh */ 19*c336094cSWarner Losh 20*c336094cSWarner Losh #ifndef _TARGET_ARCH_SIGTRAMP_H_ 21*c336094cSWarner Losh #define _TARGET_ARCH_SIGTRAMP_H_ 22*c336094cSWarner Losh 23*c336094cSWarner Losh static inline abi_long setup_sigtramp(abi_ulong offset, unsigned sigf_uc, 24*c336094cSWarner Losh unsigned sys_sigreturn) 25*c336094cSWarner Losh { 26*c336094cSWarner Losh 27*c336094cSWarner Losh return 0; 28*c336094cSWarner Losh } 29*c336094cSWarner Losh #endif /* _TARGET_ARCH_SIGTRAMP_H_ */ 30