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