/* MN10300 Signal frame definitions1*2* Copyright (C) 2007 Matsushita Electric Industrial Co., Ltd.3* Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.4*5* This program is free software; you can redistribute it and/or6* modify it under the terms of the GNU General Public Licence7* as published by the Free Software Foundation; either version8* 2 of the Licence, or (at your option) any later version.9*/1011struct sigframe12{13void (*pretcode)(void);14int sig;15struct sigcontext *psc;16struct sigcontext sc;17struct fpucontext fpuctx;18unsigned long extramask[_NSIG_WORDS-1];19char retcode[8];20};2122struct rt_sigframe23{24void (*pretcode)(void);25int sig;26struct siginfo *pinfo;27void *puc;28struct siginfo info;29struct ucontext uc;30struct fpucontext fpuctx;31char retcode[8];32};333435