function_calls
function_calls — tells how often a function was called during
profiling.
function_calls (function)
functionA function.
The number of times this function has been called while profiling was active.
This function queries the system to determine the number of times that a function was called while profiling was active (using the profile function).
Gamma>profile(t);t for(i=0;i<10;i++) { princ("i:",i,"\n"); } >> i:0 >> i:1 >> i:2 >> i:3 >> i:4 >> i:5 >> i:6 >> i:7 >> i:8 >> i:9Gamma>i;9Gamma>profile(nil);tGamma>function_calls(princ);10