Whamcloud - gitweb
git://git.whamcloud.com
/
tools
/
e2fsprogs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
567e7a3
)
e2fsck: add SIGABRT to list of signals processed by sigcatcher
author
Theodore Ts'o
<tytso@mit.edu>
Mon, 30 Jul 2012 19:45:57 +0000
(15:45 -0400)
committer
Theodore Ts'o
<tytso@mit.edu>
Mon, 30 Jul 2012 19:45:57 +0000
(15:45 -0400)
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
e2fsck/sigcatcher.c
patch
|
blob
|
history
diff --git
a/e2fsck/sigcatcher.c
b/e2fsck/sigcatcher.c
index
10b9328
..
bd56c3f
100644
(file)
--- a/
e2fsck/sigcatcher.c
+++ b/
e2fsck/sigcatcher.c
@@
-387,6
+387,7
@@
void sigcatcher_setup(void)
sigaction(SIGILL, &sa, 0);
sigaction(SIGBUS, &sa, 0);
sigaction(SIGSEGV, &sa, 0);
+ sigaction(SIGABRT, &sa, 0);
}