| 685 | ///////////////////////////////////////////////////////////////////// |
| 686 | |
| 687 | void PNode :: SetMaxHoldThreads(const int iGroupIdx, const int iMaxHoldThreads) |
| 688 | { |
| 689 | if (!CheckGroupID(iGroupIdx)) |
| 690 | { |
| 691 | return; |
| 692 | } |
| 693 | |
| 694 | m_vecGroupList[iGroupIdx]->GetCommitter()->SetMaxHoldThreads(iMaxHoldThreads); |
| 695 | } |
| 696 | |
| 697 | void PNode :: SetProposeWaitTimeThresholdMS(const int iGroupIdx, const int iWaitTimeThresholdMS) |
| 698 | { |
nothing calls this directly
no outgoing calls
no test coverage detected