[#BloombergLP-bsls-Stopwatch-accumulatedTimes] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bsls.adoc[bsls]::xref:BloombergLP/bsls/Stopwatch.adoc[Stopwatch]::accumulatedTimes :relfileprefix: ../../../ :mrdocs: Load the accumulated system, user, and wall times in seconds. == Synopsis Declared in `<bsls_stopwatch.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void accumulatedTimes( double* systemTime, double* userTime, double* wallTime) const; ---- == Description Load into the specified `systemTime`, `userTime` and `wallTime` the total (instantaneous and quiescent) elapsed system, user, and wall times (all in seconds) accumulated by this stopwatch. Note that this method attempts to retrieve all of the values at the same time (atomically), if the underlying platform supports it. == Parameters [cols="1,4"] |=== | Name| Description | *systemTime* | receives the accumulated system time, in seconds | *userTime* | receives the accumulated user time, in seconds | *wallTime* | receives the accumulated wall time, in seconds |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#