-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 297723 b: refs/heads/master c: f28f0c2 h: refs/heads/master i: 297721: 3dc728a 297719: 1a553e2 v: v3
- Loading branch information
H. Peter Anvin
committed
Feb 20, 2012
1 parent
2d627c3
commit fc92583
Showing
5 changed files
with
23 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: ea499fec48dd771bd92984337fcb57ed4c787e69 | ||
refs/heads/master: f28f0c23576662fb293defe9b1884d5a6e1bd85c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#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 */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters