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: regset.h
Close
/* SPDX-License-Identifier: GPL-2.0 */ /* * FPU regset handling methods: */ #ifndef _ASM_X86_FPU_REGSET_H #define _ASM_X86_FPU_REGSET_H #include <linux/regset.h> extern user_regset_active_fn regset_fpregs_active, regset_xregset_fpregs_active; extern user_regset_get_fn fpregs_get, xfpregs_get, fpregs_soft_get, xstateregs_get; extern user_regset_set_fn fpregs_set, xfpregs_set, fpregs_soft_set, xstateregs_set; /* * xstateregs_active == regset_fpregs_active. Please refer to the comment * at the definition of regset_fpregs_active. */ #define xstateregs_active regset_fpregs_active #endif /* _ASM_X86_FPU_REGSET_H */