table of contents
| TAU_GLOBAL_PHASE_STO(3) | TAU Instrumentation API | TAU_GLOBAL_PHASE_STO(3) |
NAME¶
TAU_GLOBAL_PHASE_STOP - Stops a global phaseSYNOPSIS¶
C/C++:TAU_GLOBAL_PHASE_STOP(Phase phase);
DESCRIPTION¶
TAU_GLOBAL_PHASE_STOP stops a global phase.EXAMPLE¶
C/C++ :/* f1.c */
TAU_GLOBAL_PHASE(globalPhase, "global phase", "", TAU_USER);
/* f2.c */
int bar(void) {
TAU_GLOBAL_PHASE_STOP(globalPhase);
/* ... */
TAU_GLOBAL_PHASE_STOP(globalPhase);
}
SEE ALSO¶
TAU_GLOBAL_PHASE(3), TAU_GLOBAL_PHASE_EXTERNAL(3), TAU_GLOBAL_PHASE_START(3)| 08/31/2005 |