Browse Source

Fixed keeping the mutex while sleeping

merge-requests/365/head
milleniumbug 10 years ago
parent
commit
655f084d22
  1. 1
      src/debug_clang.cc

1
src/debug_clang.cc

@ -206,6 +206,7 @@ void Debug::Clang::start(const std::string &command, const boost::filesystem::pa
Terminal::get().async_print(std::string(buffer, n), true);
}
}
lock.unlock();
std::this_thread::sleep_for(std::chrono::milliseconds(200));
}
});

Loading…
Cancel
Save