From c577b2e1f1292809d40c7aefff643e2b7b6b58de Mon Sep 17 00:00:00 2001 From: "nrthomas%gmail.com" Date: Fri, 7 May 2010 02:12:52 +0000 Subject: [PATCH] Bug 555352, Use SIGABRT to trigger breakpad in tscroll hangs to make these easier to distinguish from SIGSEGV crashes, p=karlt@mozbugz.karlt.net, r=anodelman git-svn-id: svn://10.0.0.236/trunk@260269 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/testing/performance/talos/ffprocess_linux.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/testing/performance/talos/ffprocess_linux.py b/mozilla/testing/performance/talos/ffprocess_linux.py index 1769abf3dc0..5c661876388 100644 --- a/mozilla/testing/performance/talos/ffprocess_linux.py +++ b/mozilla/testing/performance/talos/ffprocess_linux.py @@ -141,7 +141,7 @@ class LinuxProcess(FFProcess): """ try: if self.ProcessesWithNameExist(str(pid)): - os.kill(pid, signal.SIGSEGV) + os.kill(pid, signal.SIGABRT) time.sleep(timeout) if self.ProcessesWithNameExist(str(pid)): os.kill(pid, signal.SIGTERM)