------------------------------------------------------------------------------
| 690 | |
| 691 | //------------------------------------------------------------------------------ |
| 692 | unsigned char* CommunicationManager::GetRcvBuffer(int fromRank) |
| 693 | { |
| 694 | assert( |
| 695 | "pre: cannot find buffer for requested rank!" && (this->Rcv.find(fromRank) != this->Rcv.end())); |
| 696 | return (this->Rcv[fromRank]); |
| 697 | } |
| 698 | |
| 699 | //------------------------------------------------------------------------------ |
| 700 | unsigned int CommunicationManager::GetRcvBufferSize(int fromRank) |