aboutsummaryrefslogtreecommitdiffstats
path: root/tool/gen_dummy_probes.rb
diff options
context:
space:
mode:
Diffstat (limited to 'tool/gen_dummy_probes.rb')
-rwxr-xr-x[-rw-r--r--]tool/gen_dummy_probes.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/tool/gen_dummy_probes.rb b/tool/gen_dummy_probes.rb
index 88ad2ca5bf..e7efbd6822 100644..100755
--- a/tool/gen_dummy_probes.rb
+++ b/tool/gen_dummy_probes.rb
@@ -1,4 +1,5 @@
#!/usr/bin/ruby
+# -*- coding: us-ascii -*-
text = ARGF.read
text.upcase!
@@ -7,7 +8,7 @@ text.upcase!
text.gsub!(/^#PRAGMA.*$/, '')
# replace the provider section with the start of the header file
-text.gsub!(/PROVIDER RUBY \{/, "#ifndef\t_PROBES_H\n#define\t_PROBES_H")
+text.gsub!(/PROVIDER RUBY \{/, "#ifndef\t_PROBES_H\n#define\t_PROBES_H\n#define DTRACE_PROBES_DISABLED 1\n")
# finish up the #ifndef sandwich
text.gsub!(/\};/, "#endif\t/* _PROBES_H */")