summaryrefslogtreecommitdiff
path: root/platform/default/mbgl/util/shared_thread_pool.cpp
blob: 7a42df21de7d389c079cdf4f6d631eb9806f1d9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "shared_thread_pool.hpp"

namespace mbgl {

std::shared_ptr<ThreadPool> sharedThreadPool() {
    static std::weak_ptr<ThreadPool> weak;
    auto pool = weak.lock();
    if (!pool) {
        weak = pool = std::make_shared<ThreadPool>(4);
    }
    return pool;
}

} // namespace mbgl