mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

Impact: cleanup Move declarations of ia32_setup_rt_frame() and ia32_setup_frame() into arch/x86/kernel/signal.c. This is for future use of sigframe.h. Signed-off-by: Hiroshi Shimamoto <h-shimamoto@ct.jp.nec.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
37 lines
926 B
C
37 lines
926 B
C
#ifdef CONFIG_X86_32
|
|
struct sigframe {
|
|
char __user *pretcode;
|
|
int sig;
|
|
struct sigcontext sc;
|
|
/*
|
|
* fpstate is unused. fpstate is moved/allocated after
|
|
* retcode[] below. This movement allows to have the FP state and the
|
|
* future state extensions (xsave) stay together.
|
|
* And at the same time retaining the unused fpstate, prevents changing
|
|
* the offset of extramask[] in the sigframe and thus prevent any
|
|
* legacy application accessing/modifying it.
|
|
*/
|
|
struct _fpstate fpstate_unused;
|
|
unsigned long extramask[_NSIG_WORDS-1];
|
|
char retcode[8];
|
|
/* fp state follows here */
|
|
};
|
|
|
|
struct rt_sigframe {
|
|
char __user *pretcode;
|
|
int sig;
|
|
struct siginfo __user *pinfo;
|
|
void __user *puc;
|
|
struct siginfo info;
|
|
struct ucontext uc;
|
|
char retcode[8];
|
|
/* fp state follows here */
|
|
};
|
|
#else
|
|
struct rt_sigframe {
|
|
char __user *pretcode;
|
|
struct ucontext uc;
|
|
struct siginfo info;
|
|
/* fp state follows here */
|
|
};
|
|
#endif
|