WoW:API debugprofilestop: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
mNo edit summary
No edit summary
Line 1: Line 1:
{{wowapi}}
{{wowapi}}
{{stub/API}}
Returns the amount of time since profiling was started.
elapsedMilliseconds = debugprofilestop();


debugprofilestop() returns sub-millisecond (floating point) values.
== Returns ==
; elapsedMilliseconds : Number - Time since profiling was started in milliseconds.


{{LUA}}
== Details ==
* Debug profiling provides a high-precision timer that can be used to profile code.
 
== See also ==
* {{api|debugprofilestart}}

Revision as of 18:35, 18 April 2010

WoW API < debugprofilestop

Returns the amount of time since profiling was started.

elapsedMilliseconds = debugprofilestop();

Returns

elapsedMilliseconds
Number - Time since profiling was started in milliseconds.

Details

  • Debug profiling provides a high-precision timer that can be used to profile code.

See also