------------------------------------------------------------------------------
| 181 | |
| 182 | //------------------------------------------------------------------------------ |
| 183 | int vtkMultiProcessController::GetLocalProcessId() |
| 184 | { |
| 185 | if (this->Communicator) |
| 186 | { |
| 187 | return this->Communicator->GetLocalProcessId(); |
| 188 | } |
| 189 | else |
| 190 | { |
| 191 | vtkErrorMacro("Communicator not set."); |
| 192 | return -1; |
| 193 | } |
| 194 | } |
| 195 | |
| 196 | //------------------------------------------------------------------------------ |
| 197 | void vtkMultiProcessController::SetSingleMethod(vtkProcessFunctionType f, void* data) |
no outgoing calls
no test coverage detected