summaryrefslogtreecommitdiff
path: root/include/mbgl/platform/thread.hpp
blob: 72899a4fd80113e46f4628ea7a2b42fc50d1b756 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

namespace mbgl {
namespace platform {

// Called when a thread is created
void attachThread();

// Called when a thread is destroyed
void detachThread();

} // namespace platform
} // namespace mbgl