Fortran:
:::fortran
subroutine PMTM_timer_continue(timer)
Continue a timer. The timer should be in the paused 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 continue.
C:
:::C
void PMTM_timer_continue(PMTM_timer_t timer)