Fortran:
:::fortran
function PMTM_get_wc_time(timer)
Retrieves the wallclock time since this timer was started. If the timer has
never been started this will just return the current wallclock time of the system.
:::fortran
real::PMTM_get_wc_time
The wallclock time.
:::fortran
type(PMTM_timer), intent(in)::timer
The handle of the timer to query.
C:
:::C
double PMTM_get_wc_time(PMTM_timer_t timer)