summaryrefslogtreecommitdiff
path: root/platform/qt/src/thread.cpp
blob: 6c7d14042d5e330a0c79f8c9eccd8f18d0616650 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#include <mbgl/util/platform.hpp>
#include <mbgl/platform/thread.hpp>

#include <string>

namespace mbgl {
namespace platform {

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

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

void makeThreadLowPriority() {
}

void setCurrentThreadPriority(double) {}

void attachThread() {
}

void detachThread() {
}

} // namespace platform
} // namespace mbgl