MCPcopy Create free account
hub / github.com/dds-bridge/dds / Scheduler

Method Scheduler

library/src/system/scheduler.cpp:33–51  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

31
32
33Scheduler::Scheduler()
34{
35 numThreads = 0;
36 numHands = 0;
37
38 Scheduler::InitHighCards();
39
40#ifdef DDS_SCHEDULER
41 Scheduler::InitTimes();
42 for (int i = 0; i < 10000; i++)
43 {
44 timeHist[i] = 0;
45 timeHistNT[i] = 0;
46 timeHistSuit[i] = 0;
47 }
48#endif
49
50 Scheduler::RegisterThreads(1);
51}
52
53
54void Scheduler::InitHighCards()

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected