| 857 | |
| 858 | |
| 859 | void Scheduler::EndThreadTimer(const int thrId) |
| 860 | { |
| 861 | timersThread[thrId].End(); |
| 862 | int timeUser = timersThread[thrId].UserTime(); |
| 863 | |
| 864 | hands[ threadToHand[thrId] ].time = timeUser; |
| 865 | hands[ threadToHand[thrId] ].thread = thrId; |
| 866 | |
| 867 | group[ threadCurrGroup[thrId] ].actual += timeUser; |
| 868 | } |
| 869 | |
| 870 | |
| 871 | void Scheduler::StartBlockTimer() |