------------------------------------------------------------------------------
| 507 | |
| 508 | //------------------------------------------------------------------------------ |
| 509 | void vtkParallelTimer::EndEvent(int rank, const char* event) |
| 510 | { |
| 511 | #if vtkParallelTimerDEBUG > 2 |
| 512 | std::cerr << "=====vtkParallelTimer::EndEvent" << endl; |
| 513 | #endif |
| 514 | |
| 515 | if (this->WorldRank != rank) |
| 516 | { |
| 517 | return; |
| 518 | } |
| 519 | this->EndEvent(event); |
| 520 | } |
| 521 | |
| 522 | //------------------------------------------------------------------------------ |
| 523 | void vtkParallelTimer::EndEvent(const char* event) |
no test coverage detected