diff options
author | Greg Clayton <gclayton@apple.com> | 2012-04-12 19:04:34 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2012-04-12 19:04:34 +0000 |
commit | c3c0b0e59a8565fdaeb6f6cbe600ed59c22e5f0c (patch) | |
tree | c935a92e8de30464adb311b7c78f6ed712082528 /lldb/source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp | |
parent | 7767716d0f3e3d717f238d0969029e302ee73a6f (diff) | |
download | bcm5719-llvm-c3c0b0e59a8565fdaeb6f6cbe600ed59c22e5f0c.tar.gz bcm5719-llvm-c3c0b0e59a8565fdaeb6f6cbe600ed59c22e5f0c.zip |
Remove the GetSequenceMutex timeout that isn't being used in the GDB remote plug-in.
Also fixed the ProcessLinux, ProcessPOSIX and ProcessFreeBSD to have the correct UpdateThreadList() prototype.
llvm-svn: 154603
Diffstat (limited to 'lldb/source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp b/lldb/source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp index 41dc93c9e47..fd5102682ee 100644 --- a/lldb/source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp +++ b/lldb/source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp @@ -131,11 +131,11 @@ ProcessFreeBSD::Terminate() { } -uint32_t +bool ProcessFreeBSD::UpdateThreadList(ThreadList &old_thread_list, ThreadList &new_thread_list) { // XXX haxx new_thread_list = old_thread_list; - return 0; + return false; } |