diff options
author | Jason Molenda <jmolenda@apple.com> | 2013-10-22 01:37:18 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 2013-10-22 01:37:18 +0000 |
commit | 5e873dbc40c1d76829151ac643e1f51d0279e067 (patch) | |
tree | 7b81b6155649cbce054db59f719cdf63bfaece18 /lldb/scripts/Python/interface | |
parent | c798d8ad0a081bfe187ae306aef82f125c186fe1 (diff) | |
download | bcm5719-llvm-5e873dbc40c1d76829151ac643e1f51d0279e067.tar.gz bcm5719-llvm-5e873dbc40c1d76829151ac643e1f51d0279e067.zip |
Fix for a mistake spotted by Enrico with the SBThread::queue_id accessor.
llvm-svn: 193136
Diffstat (limited to 'lldb/scripts/Python/interface')
-rw-r--r-- | lldb/scripts/Python/interface/SBThread.i | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/scripts/Python/interface/SBThread.i b/lldb/scripts/Python/interface/SBThread.i index 15bb562c6cc..c38be5f0e70 100644 --- a/lldb/scripts/Python/interface/SBThread.i +++ b/lldb/scripts/Python/interface/SBThread.i @@ -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.''') |