mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-30 19:26:38 +07:00
10 lines
326 B
C
10 lines
326 B
C
|
#ifndef _SIGUTIL_H
|
||
|
#define _SIGUTIL_H
|
||
|
|
||
|
int save_fpu_state(struct pt_regs *regs, __siginfo_fpu_t __user *fpu);
|
||
|
int restore_fpu_state(struct pt_regs *regs, __siginfo_fpu_t __user *fpu);
|
||
|
int save_rwin_state(int wsaved, __siginfo_rwin_t __user *rwin);
|
||
|
int restore_rwin_state(__siginfo_rwin_t __user *rp);
|
||
|
|
||
|
#endif /* _SIGUTIL_H */
|