summaryrefslogtreecommitdiffstats
path: root/lldb/scripts/Python
diff options
context:
space:
mode:
authorGreg Clayton <gclayton@apple.com>2012-10-12 23:32:11 +0000
committerGreg Clayton <gclayton@apple.com>2012-10-12 23:32:11 +0000
commitea561dcffb7f49b339af2ed90efcfb87f56b9f74 (patch)
tree9ade7b315812eb32c361d4d45c8fb21bc9a5da4f /lldb/scripts/Python
parentaac08d2c3de03238a95752e6358c952adff8f950 (diff)
downloadbcm5719-llvm-ea561dcffb7f49b339af2ed90efcfb87f56b9f74.tar.gz
bcm5719-llvm-ea561dcffb7f49b339af2ed90efcfb87f56b9f74.zip
<rdar://problem/12490558>
SBProcess::SetSelectedThreadByID() had a "uint32_t tid" parameter which would truncate 64 bit thread IDs (lldb::tid_t is 64 bit). llvm-svn: 165852
Diffstat (limited to 'lldb/scripts/Python')
-rw-r--r--lldb/scripts/Python/interface/SBProcess.i2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/scripts/Python/interface/SBProcess.i b/lldb/scripts/Python/interface/SBProcess.i
index 2a7bb77dd8c..c62caa39d08 100644
--- a/lldb/scripts/Python/interface/SBProcess.i
+++ b/lldb/scripts/Python/interface/SBProcess.i
@@ -158,7 +158,7 @@ public:
SetSelectedThread (const lldb::SBThread &thread);
bool
- SetSelectedThreadByID (uint32_t tid);
+ SetSelectedThreadByID (lldb::tid_t tid);
bool
SetSelectedThreadByIndexID (uint32_t index_id);
OpenPOWER on IntegriCloud