------------------------------------------------------------------------------
| 96 | |
| 97 | //------------------------------------------------------------------------------ |
| 98 | int vtkProcessGroup::FindProcessId(int processId) |
| 99 | { |
| 100 | for (int i = 0; i < this->NumberOfProcessIds; i++) |
| 101 | { |
| 102 | if (this->ProcessIds[i] == processId) |
| 103 | return i; |
| 104 | } |
| 105 | return -1; |
| 106 | } |
| 107 | |
| 108 | //------------------------------------------------------------------------------ |
| 109 | int vtkProcessGroup::AddProcessId(int processId) |
no outgoing calls