diff options
author | Łukasz Paczos <lukas.paczos@gmail.com> | 2019-05-21 12:45:01 +0200 |
---|---|---|
committer | Łukasz Paczos <lukasz.paczos@mapbox.com> | 2019-05-22 15:52:55 +0200 |
commit | 7d6255c8605bd18a7c7d90de19346392a51c90b7 (patch) | |
tree | 65b52ac4f4b4e64598dcc885a161251d62c5d38e /platform/qt | |
parent | e79080771b36ad3a4be0dee8ca12032cd1c8488a (diff) | |
download | qtlocation-mapboxgl-7d6255c8605bd18a7c7d90de19346392a51c90b7.tar.gz |
[core] option to perform platform specific operations when creating/destroying core threads
Diffstat (limited to 'platform/qt')
-rw-r--r-- | platform/qt/src/thread.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/platform/qt/src/thread.cpp b/platform/qt/src/thread.cpp index ade3629b63..103b6d74f1 100644 --- a/platform/qt/src/thread.cpp +++ b/platform/qt/src/thread.cpp @@ -1,4 +1,5 @@ #include <mbgl/util/platform.hpp> +#include <mbgl/platform/thread.hpp> #include <string> @@ -15,5 +16,11 @@ void setCurrentThreadName(const std::string&) { void makeThreadLowPriority() { } +void attachThread() { +} + +void detachThread() { +} + } // namespace platform } // namespace mbgl |