Fortran:
:::fortran
function PMTM_get_total_wc_time(timer)
Retrieve the total wallclock time 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_total_wc_time
The total wallclock time stored for the timer
:::fortran
type(pmtm_timer), intent(in) :: timer
The timer for which to retrieve the time.
C:
:::C
double PMTM_get_total_wc_time(PMTM_timer_t timer)