mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-23 20:53:53 +08:00
20 lines
534 B
C
20 lines
534 B
C
|
#ifndef _ASM_X86_SIGHANDLING_H
|
||
|
#define _ASM_X86_SIGHANDLING_H
|
||
|
|
||
|
#include <linux/compiler.h>
|
||
|
#include <linux/ptrace.h>
|
||
|
#include <linux/signal.h>
|
||
|
|
||
|
#include <asm/processor-flags.h>
|
||
|
|
||
|
#define _BLOCKABLE (~(sigmask(SIGKILL) | sigmask(SIGSTOP)))
|
||
|
|
||
|
#define __FIX_EFLAGS (X86_EFLAGS_AC | X86_EFLAGS_OF | \
|
||
|
X86_EFLAGS_DF | X86_EFLAGS_TF | X86_EFLAGS_SF | \
|
||
|
X86_EFLAGS_ZF | X86_EFLAGS_AF | X86_EFLAGS_PF | \
|
||
|
X86_EFLAGS_CF)
|
||
|
|
||
|
void signal_fault(struct pt_regs *regs, void __user *frame, char *where);
|
||
|
|
||
|
#endif /* _ASM_X86_SIGHANDLING_H */
|