You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
option('tracy_enable', type : 'boolean', value : true, description : 'Enable profiling', yield: true)
2
+
option('on_demand', type : 'boolean', value : false, description : 'On-demand profiling')
3
+
option('callstack', type : 'boolean', value : false, description : 'Enfore callstack collection for tracy regions')
4
+
option('no_callstack', type : 'boolean', value : false, description : 'Disable all callstack related functionality')
5
+
option('no_callstack_inlines', type : 'boolean', value : false, description : 'Disables the inline functions in callstacks')
6
+
option('only_localhost', type : 'boolean', value : false, description : 'Only listen on the localhost interface')
7
+
option('no_broadcast', type : 'boolean', value : false, description : 'Disable client discovery by broadcast to local network')
8
+
option('only_ipv4', type : 'boolean', value : false, description : 'Tracy will only accept connections on IPv4 addresses (disable IPv6)')
9
+
option('no_code_transfer', type : 'boolean', value : false, description : 'Disable collection of source code')
10
+
option('no_context_switch', type : 'boolean', value : false, description : 'Disable capture of context switches')
11
+
option('no_exit', type : 'boolean', value : false, description : 'Client executable does not exit until all profile data is sent to server')
12
+
option('no_sampling', type : 'boolean', value : false, description : 'Disable call stack sampling')
13
+
option('no_verify', type : 'boolean', value : false, description : 'Disable zone validation for C API')
14
+
option('no_vsync_capture', type : 'boolean', value : false, description : 'Disable capture of hardware Vsync events')
15
+
option('no_frame_image', type : 'boolean', value : false, description : 'Disable the frame image support and its thread')
16
+
option('no_system_tracing', type : 'boolean', value : false, description : 'Disable systrace sampling')
17
+
option('patchable_nopsleds', type : 'boolean', value : false, description : 'Enable nopsleds for efficient patching by system-level tools (e.g. rr)')
18
+
option('timer_fallback', type : 'boolean', value : false, description : 'Use lower resolution timers')
19
+
option('libunwind_backtrace', type : 'boolean', value : false, description : 'Use libunwind backtracing where supported')
20
+
option('symbol_offline_resolve', type : 'boolean', value : false, description : 'Instead of full runtime symbol resolution, only resolve the image path and offset to enable offline symbol resolution')
21
+
option('libbacktrace_elf_dynload_support', type : 'boolean', value : false, description : 'Enable libbacktrace to support dynamically loaded elfs in symbol resolution resolution after the first symbol resolve operation')
22
+
option('delayed_init', type : 'boolean', value : false, description : 'Enable delayed initialization of the library (init on first call)')
23
+
option('manual_lifetime', type : 'boolean', value : false, description : 'Enable the manual lifetime management of the profile')
24
+
option('fibers', type : 'boolean', value : false, description : 'Enable fibers support')
25
+
option('no_crash_handler', type : 'boolean', value : false, description : 'Disable crash handling')
26
+
option('verbose', type : 'boolean', value : false, description : 'Enable verbose logging')
27
+
option('debuginfod', type : 'boolean', value : false, description : 'Enable debuginfod support')
0 commit comments