Tracy_clientSourceBindings to the client
val enter :
?cs_depth:int ->
__FILE__:string ->
__LINE__:int ->
?__FUNCTION__:string ->
string ->
spanenter ~__FILE__ ~__LINE__ name enters a span.
Set application information
add_text span s annotates the span with text s. This can be called several times on the same span.
Formatted version of add_text.
Usage: add_text_f span (fun k -> k "some %s message! (%d/100)" "formatted" 100).
add_value span v annotates the span with a numeric value (which should be unsigned).
set_color span c sets the color of the span.
c is an integer that represents a color using a RGB triple as follows: 0xRRGGBB.
val with_ :
?cs_depth:int ->
__FILE__:string ->
__LINE__:int ->
?__FUNCTION__:string ->
string ->
(span -> 'a) ->
'aRun function within a span. See enter for more details about the parameters.
Give a name to the current thread
Send a message
Send a formatted message. Usage: message_f (fun k -> k "hello %s %d" "world" 42)