| 663 | |
| 664 | class TIBCollective: public IIBCollective { |
| 665 | struct TPendingMessage { |
| 666 | int QPN; |
| 667 | ui64 WorkId; |
| 668 | |
| 669 | TPendingMessage() { |
| 670 | Zero(*this); |
| 671 | } |
| 672 | TPendingMessage(int qpn, ui64 wid) |
| 673 | : QPN(qpn) |
| 674 | , WorkId(wid) |
| 675 | { |
| 676 | } |
| 677 | }; |
| 678 | |
| 679 | struct TBlockInform { |
| 680 | TAllDataSync::TBlockInfo RemoteBlocks[2]; |
no outgoing calls
no test coverage detected