OXIESEC PANEL
- Current Dir:
/
/
usr
/
src
/
linux-headers-4.15.0-197
/
arch
/
x86
/
include
/
asm
/
fpu
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
11/17/2022 06:42:22 AM
rwxr-xr-x
📄
api.h
1.25 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
internal.h
16.06 KB
11/01/2022 04:52:05 PM
rw-r--r--
📄
regset.h
635 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
signal.h
1.16 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
types.h
7.81 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
xstate.h
1.84 KB
01/28/2018 09:20:33 PM
rw-r--r--
Editing: signal.h
Close
/* SPDX-License-Identifier: GPL-2.0 */ /* * x86 FPU signal frame handling methods: */ #ifndef _ASM_X86_FPU_SIGNAL_H #define _ASM_X86_FPU_SIGNAL_H #ifdef CONFIG_X86_64 # include <uapi/asm/sigcontext.h> # include <asm/user32.h> struct ksignal; int ia32_setup_rt_frame(int sig, struct ksignal *ksig, compat_sigset_t *set, struct pt_regs *regs); int ia32_setup_frame(int sig, struct ksignal *ksig, compat_sigset_t *set, struct pt_regs *regs); #else # define user_i387_ia32_struct user_i387_struct # define user32_fxsr_struct user_fxsr_struct # define ia32_setup_frame __setup_frame # define ia32_setup_rt_frame __setup_rt_frame #endif #ifdef CONFIG_COMPAT int __copy_siginfo_to_user32(compat_siginfo_t __user *to, const siginfo_t *from, bool x32_ABI); #endif extern void convert_from_fxsr(struct user_i387_ia32_struct *env, struct task_struct *tsk); extern void convert_to_fxsr(struct task_struct *tsk, const struct user_i387_ia32_struct *env); unsigned long fpu__alloc_mathframe(unsigned long sp, int ia32_frame, unsigned long *buf_fx, unsigned long *size); extern void fpu__init_prepare_fx_sw_frame(void); #endif /* _ASM_X86_FPU_SIGNAL_H */