| 123 | } |
| 124 | |
| 125 | void ThreadQueue::start_online(Player& P, const TimerWithComm& prep_time) |
| 126 | { |
| 127 | online_timer.start(P.total_comm()); |
| 128 | online_prep_timer -= prep_time; |
| 129 | |
| 130 | if (debug) |
| 131 | fprintf(stderr, "start online thread %lx timer at %f\n", long(this), |
| 132 | timer.elapsed()); |
| 133 | } |
| 134 | |
| 135 | void ThreadQueue::stop_online(Player& P, const TimerWithComm& prep_time) |
| 136 | { |
no test coverage detected