Name

TAU_GLOBAL_PHASE_START — Starts a global phase

Synopsis

C/C++:

TAU_GLOBAL_PHASE_START(phase);
Phase phase;

Description

TAU_GLOBAL_PHASE_START starts a global phase.

Example

C/C++ :

/* f1.c */

TAU_GLOBAL_PHASE(globalPhase, "global phase", "", TAU_USER);

/* f2.c */

int bar(void) {
  TAU_GLOBAL_PHASE_START(globalPhase);
  /* ... */
  TAU_GLOBAL_PHASE_STOP(globalPhase);
}