We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 662f689 commit 9fdee3bCopy full SHA for 9fdee3b
core/env_vars.ml
@@ -21,10 +21,8 @@ let debug = Option.is_some (Unix.getenv "MAGIC_TRACE_DEBUG")
21
features of magic-trace. *)
22
let experimental = Option.is_some (Unix.getenv "MAGIC_TRACE_EXPERIMENTAL")
23
24
-(* magic-trace's dlfilter integration is busted right now, see #246. Also:
25
-
26
- When tracing the kernel on certain systems, perf only has root access when
+(* When tracing the kernel on certain systems, perf only has root access when
27
being run with a specific set of flags. Since this does not include
28
[--dlfilter], this environment variable allows the user to forcibly disable
29
filtering. *)
30
-let no_dlfilter = Option.is_none (Unix.getenv "MAGIC_TRACE_ENABLE_DLFILTER")
+let no_dlfilter = Option.is_some (Unix.getenv "MAGIC_TRACE_NO_DLFILTER")
0 commit comments