summaryrefslogtreecommitdiffstats
path: root/memstomp.c
diff options
context:
space:
mode:
authorWilliam Cohen <wcohen@redhat.com>2011-03-09 16:56:03 -0500
committerWilliam Cohen <wcohen@redhat.com>2011-03-09 16:56:03 -0500
commit9e0b7610c433725222171e342029bf201a37111b (patch)
tree5952053bbfa01b7f229cf661042a81e3ecbd438d /memstomp.c
parent38aaf311fb74384076b6c7cde68f8f66052e5e77 (diff)
downloadmemstomp-9e0b7610c433725222171e342029bf201a37111b.tar.gz
memstomp-9e0b7610c433725222171e342029bf201a37111b.tar.xz
memstomp-9e0b7610c433725222171e342029bf201a37111b.zip
Support for ABRT
ABRT is a package that allows automated reported of problems on the system. ABRT watches for programs exiting as a result of a SIGSEGV and whether the executable belongs a package. If both conditions are true then, the ABRT applet can assist in report a bug.
Diffstat (limited to 'memstomp.c')
-rw-r--r--memstomp.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/memstomp.c b/memstomp.c
index 1089e75..f780fa7 100644
--- a/memstomp.c
+++ b/memstomp.c
@@ -44,9 +44,9 @@
#endif
#include <signal.h>
-#define KILL_TRAP raise(SIGABRT)
+#define ABRT_TRAP raise(SIGSEGV)
-static bool kill_trap = false;
+static bool abrt_trap = false;
#ifndef SCHED_RESET_ON_FORK
/* "Your libc lacks the definition of SCHED_RESET_ON_FORK. We'll now
@@ -172,7 +172,7 @@ static void setup(void) {
"memstomp: useful stack traces.\n\n");
if (getenv("MEMSTOMP_KILL"))
- kill_trap = true;
+ abrt_trap = true;
initialized = true;
@@ -323,7 +323,7 @@ void * memcpy(void * dest, const void * src, size_t count)
/* Check for overlap. */
if (distance < count) {
- if (kill_trap) KILL_TRAP;
+ if (abrt_trap) ABRT_TRAP;
/* report the overlap */
warn_memcpy(dest, src, count);
}