diff options
author | Todd Fiala <todd.fiala@gmail.com> | 2016-07-28 17:56:26 +0000 |
---|---|---|
committer | Todd Fiala <todd.fiala@gmail.com> | 2016-07-28 17:56:26 +0000 |
commit | 27279feb783691ed13919d0f9844381c9a2ac094 (patch) | |
tree | bb871a105d312d153fbb1a19412ed5187a07644f /lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp | |
parent | 2d6a9ec9351f974a19eeca4c2326ef9ff701ee37 (diff) | |
download | bcm5719-llvm-27279feb783691ed13919d0f9844381c9a2ac094.tar.gz bcm5719-llvm-27279feb783691ed13919d0f9844381c9a2ac094.zip |
Fixed up Xcode build for r276976 and r277011.
Also, fixed up typos in RenderScript code that could
not possibly compile.
llvm-svn: 277012
Diffstat (limited to 'lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp b/lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp index 7782f42d916..3c333f076ce 100644 --- a/lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp +++ b/lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp @@ -941,7 +941,7 @@ ProcessKDP::AsyncThread (void *arg) if (log) log->Printf ("ProcessKDP::AsyncThread (pid = %" PRIu64 ") listener.WaitForEvent (NULL, event_sp)...", pid); - if (listener_sp->WaitForEvent(stsd::chrono::micrseconds(0), event_sp)) + if (listener_sp->WaitForEvent(std::chrono::microseconds(0), event_sp)) { uint32_t event_type = event_sp->GetType(); if (log) |