From: Greg Clayton Date: Wed, 12 Aug 2015 20:04:01 +0000 (+0000) Subject: Fix process_events.py to auto continue the process if we attached so the process... X-Git-Tag: studio-1.4~147 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4d48e5b371eb54193ec0bbb422a190c0f0ae8c77;p=platform%2Fupstream%2Fllvm.git Fix process_events.py to auto continue the process if we attached so the process doesn't just sit there suspended. llvm-svn: 244801 --- diff --git a/lldb/examples/python/process_events.py b/lldb/examples/python/process_events.py index 98c2d3f..e8ccc5f 100755 --- a/lldb/examples/python/process_events.py +++ b/lldb/examples/python/process_events.py @@ -171,7 +171,13 @@ def main(argv): # Make sure the launch went ok if process and process.GetProcessID() != lldb.LLDB_INVALID_PROCESS_ID: + pid = process.GetProcessID() + print 'Process is %i' % (pid) + if attach_info: + # continue process if we attached as we won't get an initial event + process.Continue() + listener = debugger.GetListener() # sign up for process state change events stop_idx = 0