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
This commit is contained in:
nrthomas%gmail.com
2010-05-07 02:12:52 +00:00
parent a547e50685
commit c577b2e1f1

View File

@@ -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)