Fortran:
:::fortran
subroutine PMTM_timer_pause(timer)
Pause a timer. The timer should be in the running state, and an error will be reported if it is not and PMTM has been compiled in debug mode.
:::fortran
type(PMTM_timer), intent(in)::timer
The handle of the timer to pause.
C:
:::C
void PMTM_timer_pause(PMTM_timer_t timer)