Fortran:
:::fortran
function PMTM_get_last_wc_time(timer)
Retrieves the wallclock time of the last block stored in a given timer. The timer must be stopped for the returned time to be meaningful (this is checked when PMTM is compiled in debug mode).
:::fortran
real::PMTM_get_last_wc_time
The wallclock time.
:::fortran
type(PMTM_timer), intent(in)::timer
The handle of the timer to query.
C:
:::C
double PMTM_get_last_wc_time(PMTM_timer_t timer)