We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7dc11e3 commit b9ceb61Copy full SHA for b9ceb61
lldb/source/Host/posix/MainLoopPosix.cpp
@@ -169,7 +169,7 @@ int MainLoopPosix::RunImpl::StartPoll(
169
using namespace std::chrono;
170
int timeout = -1;
171
if (point) {
172
- nanosecond dur = std::max(*point - steady_clock::now(), nanoseconds(0));
+ nanoseconds dur = std::max(*point - steady_clock::now(), nanoseconds(0));
173
timeout = ceil<milliseconds>(dur).count();
174
}
175
return poll(read_fds.data(), read_fds.size(), timeout);
0 commit comments