pf2 0.12.0 → 0.14.0
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.
- checksums.yaml +4 -4
- data/.rdoc_options +3 -0
- data/CHANGELOG.md +30 -0
- data/README.md +44 -56
- data/THIRD_PARTY_LICENSES.txt +75 -0
- data/doc/development.md +6 -0
- data/ext/pf2/extconf.rb +20 -1
- data/ext/pf2/khashl.h +506 -0
- data/ext/pf2/serializer.c +108 -35
- data/ext/pf2/session.c +170 -39
- data/ext/pf2/session.h +152 -3
- data/lib/pf2/cli.rb +0 -1
- data/lib/pf2/reporter/firefox_profiler_ser2.rb +1 -1
- data/lib/pf2/reporter/pprof.rb +349 -0
- data/lib/pf2/reporter.rb +1 -0
- data/lib/pf2/serve.rb +1 -2
- data/lib/pf2/version.rb +1 -1
- data/lib/pf2.rb +53 -3
- data/vendor/profile.proto +233 -0
- metadata +5 -1
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pf2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.14.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Daisuke Aritomo
|
|
@@ -121,6 +121,7 @@ files:
|
|
|
121
121
|
- LICENSE.txt
|
|
122
122
|
- README.md
|
|
123
123
|
- Rakefile
|
|
124
|
+
- THIRD_PARTY_LICENSES.txt
|
|
124
125
|
- doc/development.md
|
|
125
126
|
- examples/mandelbrot.rb
|
|
126
127
|
- examples/mandelbrot_ractor.rb
|
|
@@ -132,6 +133,7 @@ files:
|
|
|
132
133
|
- ext/pf2/configuration.h
|
|
133
134
|
- ext/pf2/debug.h
|
|
134
135
|
- ext/pf2/extconf.rb
|
|
136
|
+
- ext/pf2/khashl.h
|
|
135
137
|
- ext/pf2/pf2.c
|
|
136
138
|
- ext/pf2/pf2.h
|
|
137
139
|
- ext/pf2/ringbuffer.c
|
|
@@ -147,6 +149,7 @@ files:
|
|
|
147
149
|
- lib/pf2/reporter.rb
|
|
148
150
|
- lib/pf2/reporter/annotate.rb
|
|
149
151
|
- lib/pf2/reporter/firefox_profiler_ser2.rb
|
|
152
|
+
- lib/pf2/reporter/pprof.rb
|
|
150
153
|
- lib/pf2/reporter/stack_weaver.rb
|
|
151
154
|
- lib/pf2/serve.rb
|
|
152
155
|
- lib/pf2/version.rb
|
|
@@ -220,6 +223,7 @@ files:
|
|
|
220
223
|
- vendor/libbacktrace/xztest.c
|
|
221
224
|
- vendor/libbacktrace/zstdtest.c
|
|
222
225
|
- vendor/libbacktrace/ztest.c
|
|
226
|
+
- vendor/profile.proto
|
|
223
227
|
homepage: https://github.com/osyoyu/pf2
|
|
224
228
|
licenses:
|
|
225
229
|
- MIT
|