[Lldb-commits] [lldb] r162531 - /lldb/trunk/examples/python/operating_system.py

Enrico Granata egranata at apple.com
Thu Aug 23 18:53:48 PDT 2012


Author: enrico
Date: Thu Aug 23 20:53:47 2012
New Revision: 162531

URL: http://llvm.org/viewvc/llvm-project?rev=162531&view=rev
Log:
Fixing an issue in the OS sample

Modified:
    lldb/trunk/examples/python/operating_system.py

Modified: lldb/trunk/examples/python/operating_system.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/examples/python/operating_system.py?rev=162531&r1=162530&r2=162531&view=diff
==============================================================================
--- lldb/trunk/examples/python/operating_system.py (original)
+++ lldb/trunk/examples/python/operating_system.py Thu Aug 23 20:53:47 2012
@@ -10,6 +10,7 @@
         if type(process) is lldb.SBProcess and process.IsValid():
             self.process = process
             self.registers = None # Will be an dictionary containing info for each register
+            self.threads = None # Will be an dictionary containing info for each thread
     
     def get_thread_info(self):
         if not self.threads:





More information about the lldb-commits mailing list