From 65118296eb4b17f3abdf5613d2f5d07fb83df74c Mon Sep 17 00:00:00 2001 From: "Thiago Marcos P. Santos" Date: Fri, 5 Aug 2016 23:39:35 +0300 Subject: [Qt] Add a no-op thread helper for other platforms --- platform/qt/src/thread.cpp | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 platform/qt/src/thread.cpp (limited to 'platform') diff --git a/platform/qt/src/thread.cpp b/platform/qt/src/thread.cpp new file mode 100644 index 0000000000..ade3629b63 --- /dev/null +++ b/platform/qt/src/thread.cpp @@ -0,0 +1,19 @@ +#include + +#include + +namespace mbgl { +namespace platform { + +std::string getCurrentThreadName() { + return "unknown"; +} + +void setCurrentThreadName(const std::string&) { +} + +void makeThreadLowPriority() { +} + +} // namespace platform +} // namespace mbgl -- cgit v1.2.1