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