total-sample-count ( sample -- count )


Vocabulary
tools.profiler.sampling

Inputs and outputs
samplea raw profile sample
countan integer


Word description
Returns the total number of sample intervals spent during sample.

See also
gc-sample-count, jit-sample-count, foreign-sample-count, foreign-thread-sample-count, sample-thread, sample-callstack

Definition
USING: kernel sequences ;

IN: tools.profiler.sampling

: total-sample-count ( sample -- count ) 0 swap nth ;