[Lldb-commits] [lldb] r193136 - Fix for a mistake spotted by Enrico with the SBThread::queue_id accessor.

Jason Molenda jmolenda at apple.com
Mon Oct 21 18:37:18 PDT 2013


Author: jmolenda
Date: Mon Oct 21 20:37:18 2013
New Revision: 193136

URL: http://llvm.org/viewvc/llvm-project?rev=193136&view=rev
Log:
Fix for a mistake spotted by Enrico with the SBThread::queue_id accessor.

Modified:
    lldb/trunk/scripts/Python/interface/SBThread.i

Modified: lldb/trunk/scripts/Python/interface/SBThread.i
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/scripts/Python/interface/SBThread.i?rev=193136&r1=193135&r2=193136&view=diff
==============================================================================
--- lldb/trunk/scripts/Python/interface/SBThread.i (original)
+++ lldb/trunk/scripts/Python/interface/SBThread.i Mon Oct 21 20:37:18 2013
@@ -285,7 +285,7 @@ public:
         if _newclass: queue = property(GetQueueName, None, doc='''A read only property that returns the dispatch queue name of this thread as a string.''')
 
         __swig_getmethods__["queue_id"] = GetQueueID
-        if _newclass: queue = property(GetQueueID, None, doc='''A read only property that returns the dispatch queue id of this thread as an integer.''')
+        if _newclass: queue_id = property(GetQueueID, None, doc='''A read only property that returns the dispatch queue id of this thread as an integer.''')
 
         __swig_getmethods__["stop_reason"] = GetStopReason
         if _newclass: stop_reason = property(GetStopReason, None, doc='''A read only property that returns an lldb enumeration value (see enumerations that start with "lldb.eStopReason") that represents the reason this thread stopped.''')





More information about the lldb-commits mailing list