From b56ef794a0690d29757d3934d3611018bb4f7b66 Mon Sep 17 00:00:00 2001 From: Michael Woerister Date: Wed, 9 Jul 2014 14:16:50 +0200 Subject: [PATCH] debuginfo: Remove atexit()-debugger shutdown from lldb_batchmode.py The shutdown call would always result in an exception being printed to standard error. --- src/etc/lldb_batchmode.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/etc/lldb_batchmode.py b/src/etc/lldb_batchmode.py index 85bfc425b587..06bd2a13d22c 100644 --- a/src/etc/lldb_batchmode.py +++ b/src/etc/lldb_batchmode.py @@ -31,9 +31,6 @@ import threading import re import atexit -# Terminate the debugger -atexit.register(lambda: lldb.SBDebugger.Terminate()) - # Set this to True for additional output DEBUG_OUTPUT = False