chrisa-ruby-dtrace 0.2.1 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/History.txt +5 -0
- data/Manifest.txt +70 -19
- metadata +1 -1
data/History.txt
CHANGED
data/Manifest.txt
CHANGED
@@ -1,8 +1,18 @@
|
|
1
|
-
History.txt
|
2
|
-
Manifest.txt
|
3
|
-
README.txt
|
4
|
-
Rakefile
|
5
1
|
examples/scsi.rb
|
2
|
+
ext/dof
|
3
|
+
ext/dof/constants.c
|
4
|
+
ext/dof/dof.h
|
5
|
+
ext/dof/dof_api.c
|
6
|
+
ext/dof/dof_helper.c
|
7
|
+
ext/dof/extconf.rb
|
8
|
+
ext/dof/file.c
|
9
|
+
ext/dof/generator.c
|
10
|
+
ext/dof/header.c
|
11
|
+
ext/dof/Makefile
|
12
|
+
ext/dof/mkmf.log
|
13
|
+
ext/dof/parser.c
|
14
|
+
ext/dof/parser.h
|
15
|
+
ext/dof/section.c
|
6
16
|
ext/dtrace_aggdata.c
|
7
17
|
ext/dtrace_api.c
|
8
18
|
ext/dtrace_api.h
|
@@ -10,49 +20,90 @@ ext/dtrace_bufdata.c
|
|
10
20
|
ext/dtrace_dropdata.c
|
11
21
|
ext/dtrace_errdata.c
|
12
22
|
ext/dtrace_hdl.c
|
13
|
-
ext/dtrace_probe.c
|
14
23
|
ext/dtrace_probedata.c
|
24
|
+
ext/dtrace_probedesc.c
|
15
25
|
ext/dtrace_process.c
|
16
26
|
ext/dtrace_program.c
|
17
27
|
ext/dtrace_programinfo.c
|
18
28
|
ext/dtrace_recdesc.c
|
19
29
|
ext/dtrace_util.c
|
20
30
|
ext/extconf.rb
|
21
|
-
|
31
|
+
ext/i386-solaris
|
32
|
+
ext/i386-solaris/dtrace_probe.c
|
33
|
+
ext/i386-darwin
|
34
|
+
ext/i386-darwin/dtrace_probe.c
|
35
|
+
ext/stubs.txt
|
36
|
+
lib/dtrace
|
37
|
+
lib/dtrace/aggregate.rb
|
38
|
+
lib/dtrace/aggregateset.rb
|
39
|
+
lib/dtrace/consumer.rb
|
40
|
+
lib/dtrace/data.rb
|
41
|
+
lib/dtrace/dof
|
42
|
+
lib/dtrace/dof/file.rb
|
43
|
+
lib/dtrace/dof/section
|
44
|
+
lib/dtrace/dof/section/strtab.rb
|
45
|
+
lib/dtrace/dof/section.rb
|
46
|
+
lib/dtrace/dof.rb
|
47
|
+
lib/dtrace/printfrecord.rb
|
22
48
|
lib/dtrace/probe.rb
|
49
|
+
lib/dtrace/probedata.rb
|
50
|
+
lib/dtrace/probedesc.rb
|
51
|
+
lib/dtrace/provider
|
52
|
+
lib/dtrace/provider/probedef.rb
|
23
53
|
lib/dtrace/provider.rb
|
24
|
-
lib/dtrace/
|
25
|
-
lib/dtrace/
|
54
|
+
lib/dtrace/record.rb
|
55
|
+
lib/dtrace/stackrecord.rb
|
26
56
|
lib/dtrace/tracer.rb
|
27
|
-
lib/
|
28
|
-
lib/
|
57
|
+
lib/dtrace/version.rb
|
58
|
+
lib/dtrace.rb
|
29
59
|
lib/dtraceconsumer.rb
|
30
|
-
|
31
|
-
|
32
|
-
lib/dtraceprobe.rb
|
33
|
-
lib/dtraceprobedata.rb
|
34
|
-
lib/dtracerecord.rb
|
35
|
-
lib/dtracestackrecord.rb
|
36
|
-
plugin/dtrace/README
|
37
|
-
plugin/dtrace/Rakefile
|
60
|
+
plugin/dtrace
|
61
|
+
plugin/dtrace/bin
|
38
62
|
plugin/dtrace/bin/dtracer.rb
|
39
63
|
plugin/dtrace/init.rb
|
64
|
+
plugin/dtrace/lib
|
40
65
|
plugin/dtrace/lib/dtrace_helper.rb
|
41
66
|
plugin/dtrace/lib/dtrace_report.rb
|
42
67
|
plugin/dtrace/lib/dtracer.rb
|
43
68
|
plugin/dtrace/lib/dtracer_client.rb
|
69
|
+
plugin/dtrace/public
|
70
|
+
plugin/dtrace/public/stylesheets
|
44
71
|
plugin/dtrace/public/stylesheets/dtrace.css
|
72
|
+
plugin/dtrace/Rakefile
|
73
|
+
plugin/dtrace/README
|
74
|
+
plugin/dtrace/scripts
|
45
75
|
plugin/dtrace/scripts/default.d
|
46
76
|
plugin/dtrace/scripts/rails_mysql.d
|
77
|
+
plugin/dtrace/tasks
|
47
78
|
plugin/dtrace/tasks/dtrace.rake
|
79
|
+
plugin/dtrace/test
|
48
80
|
plugin/dtrace/test/dtrace_test.rb
|
81
|
+
plugin/dtrace/views
|
82
|
+
plugin/dtrace/views/dtrace
|
49
83
|
plugin/dtrace/views/dtrace/_report.rhtml
|
84
|
+
test/apple-dof
|
85
|
+
test/disabled_probe_effect.txt
|
86
|
+
test/dof
|
87
|
+
test/dof2
|
88
|
+
test/test_disabled_probe_effect.rb
|
89
|
+
test/test_dof_generator.rb
|
90
|
+
test/test_dof_helper.rb
|
91
|
+
test/test_dof_parser.rb
|
92
|
+
test/test_dof_providers.rb
|
93
|
+
test/test_dof_strtabs.rb
|
50
94
|
test/test_dtrace.rb
|
51
95
|
test/test_dtrace_aggregates.rb
|
52
96
|
test/test_dtrace_drops_errors.rb
|
97
|
+
test/test_dtrace_probe.rb
|
98
|
+
test/test_dtrace_probes.rb
|
53
99
|
test/test_dtrace_processes.rb
|
54
100
|
test/test_dtrace_profile.rb
|
101
|
+
test/test_dtrace_provider.rb
|
55
102
|
test/test_dtrace_repeat.rb
|
56
103
|
test/test_dtrace_rubyprobe.rb
|
57
104
|
test/test_dtrace_typefilter.rb
|
58
|
-
test/
|
105
|
+
test/test_legacy_consumer.rb
|
106
|
+
README.txt
|
107
|
+
History.txt
|
108
|
+
Manifest.txt
|
109
|
+
Rakefile
|