summaryrefslogtreecommitdiffstats
path: root/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h
diff options
context:
space:
mode:
authorJason Molenda <jmolenda@apple.com>2013-02-23 02:04:45 +0000
committerJason Molenda <jmolenda@apple.com>2013-02-23 02:04:45 +0000
commite9ca4af4c8b30854b54330257d7e4b3bba3ded9b (patch)
tree7d98c428f6c6079f405f114b315f8daf32a192ec /lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h
parent2b3a0c4bcf54b6dd9ff962babfee688e300039b6 (diff)
downloadbcm5719-llvm-e9ca4af4c8b30854b54330257d7e4b3bba3ded9b.tar.gz
bcm5719-llvm-e9ca4af4c8b30854b54330257d7e4b3bba3ded9b.zip
Fix a handful of remaining assumptions that thread IDs were 32-bits
in the gdb-remote Process plugin files. llvm-svn: 175947
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h')
-rw-r--r--lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h
index 68a0a3d20d2..25b697de8ef 100644
--- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h
+++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h
@@ -332,10 +332,10 @@ public:
uint32_t recv_size);
bool
- SetCurrentThread (int tid);
+ SetCurrentThread (uint64_t tid);
bool
- SetCurrentThreadForRun (int tid);
+ SetCurrentThreadForRun (uint64_t tid);
lldb_private::LazyBool
SupportsAllocDeallocMemory () // const
OpenPOWER on IntegriCloud