MCPcopy Create free account
hub / github.com/CalcProgrammer1/KeyboardVisualizer / StartThread

Method StartThread

KeyboardVisualizerCommon/Visualizer.cpp:672–680  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

670}
671
672void Visualizer::StartThread()
673{
674 //Set application running flag to TRUE before starting threads
675 running = true;
676
677 VisThread = new std::thread(&Visualizer::VisThreadFunction, this);
678 NetConnectThread = new std::thread(&Visualizer::NetConnectThreadFunction, this);
679 NetUpdateThread = new std::thread(&Visualizer::NetUpdateThreadFunction, this);
680}
681
682void Visualizer::Shutdown()
683{

Callers 1

mainFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected