MCPcopy Create free account
hub / github.com/colmap/colmap / Thread

Method Thread

src/colmap/util/threading.cc:36–46  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

34namespace colmap {
35
36Thread::Thread()
37 : started_(false),
38 stopped_(false),
39 paused_(false),
40 pausing_(false),
41 finished_(false),
42 setup_(false),
43 setup_valid_(false) {
44 RegisterCallback(STARTED_CALLBACK);
45 RegisterCallback(FINISHED_CALLBACK);
46}
47
48void Thread::Start() {
49 std::unique_lock<std::mutex> lock(mutex_);

Callers 1

process_scenesFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected