diff options
author | Jason Molenda <jmolenda@apple.com> | 2013-02-23 02:04:45 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 2013-02-23 02:04:45 +0000 |
commit | e9ca4af4c8b30854b54330257d7e4b3bba3ded9b (patch) | |
tree | 7d98c428f6c6079f405f114b315f8daf32a192ec /lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h | |
parent | 2b3a0c4bcf54b6dd9ff962babfee688e300039b6 (diff) | |
download | bcm5719-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.h | 4 |
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 |