summaryrefslogtreecommitdiff
path: root/platform/qt/src/thread.cpp
blob: ade3629b63b66886979c5411840a2ce771ef551f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <mbgl/util/platform.hpp>

#include <string>

namespace mbgl {
namespace platform {

std::string getCurrentThreadName() {
    return "unknown";
}

void setCurrentThreadName(const std::string&) {
}

void makeThreadLowPriority() {
}

} // namespace platform
} // namespace mbgl