[Lldb-commits] [lldb] r132152 - /lldb/trunk/test/lldbutil.py
    Johnny Chen 
    johnny.chen at apple.com
       
    Thu May 26 14:53:05 PDT 2011
    
    
  
Author: johnny
Date: Thu May 26 16:53:05 2011
New Revision: 132152
URL: http://llvm.org/viewvc/llvm-project?rev=132152&view=rev
Log:
Add comment.
Modified:
    lldb/trunk/test/lldbutil.py
Modified: lldb/trunk/test/lldbutil.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lldbutil.py?rev=132152&r1=132151&r2=132152&view=diff
==============================================================================
--- lldb/trunk/test/lldbutil.py (original)
+++ lldb/trunk/test/lldbutil.py Thu May 26 16:53:05 2011
@@ -210,7 +210,10 @@
 # ==================================================
 
 def get_stopped_threads(process, reason):
-    """Returns the thread(s) with the specified stop reason in a list."""
+    """Returns the thread(s) with the specified stop reason in a list.
+
+    The list can be empty if no such thread exists.
+    """
     threads = []
     for t in process:
         if t.GetStopReason() == reason:
    
    
More information about the lldb-commits
mailing list