------------------------------------------------------------------------------
| 40 | |
| 41 | //------------------------------------------------------------------------------ |
| 42 | int vtkSubCommunicator::ReceiveVoidArray( |
| 43 | void* data, vtkIdType length, int type, int remoteHandle, int tag) |
| 44 | { |
| 45 | int realHandle; |
| 46 | if (remoteHandle == vtkMultiProcessController::ANY_SOURCE) |
| 47 | { |
| 48 | realHandle = vtkMultiProcessController::ANY_SOURCE; |
| 49 | } |
| 50 | else |
| 51 | { |
| 52 | realHandle = this->Group->GetProcessId(remoteHandle); |
| 53 | } |
| 54 | return this->Group->GetCommunicator()->ReceiveVoidArray(data, length, type, realHandle, tag); |
| 55 | } |
| 56 | |
| 57 | //------------------------------------------------------------------------------ |
| 58 | void vtkSubCommunicator::SetGroup(vtkProcessGroup* group) |
no test coverage detected