ruby-prof 1.4.0-x64-mingw32 → 1.4.1-x64-mingw32
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/CHANGES +4 -0
- data/ext/ruby_prof/extconf.rb +6 -0
- data/lib/2.7/ruby_prof.so +0 -0
- data/lib/ruby-prof/version.rb +1 -1
- metadata +4 -6
- data/ext/ruby_prof/vc/ruby_prof_linux.vcxproj +0 -132
- data/test/client.rb +0 -9
- data/test/server.rb +0 -64
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 52a9fd8e79e317128895518808ba98fc54a215702689d73a5494be49bd6cd37a
|
4
|
+
data.tar.gz: 23f9b16c30974347501d22a6ebc8aa12d0c063c216a8264a6e4692482c192f6c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3a575078b75923a1b0d0f630bc61873732e64c05e7a24ad72aa6e35a8a5f569c9623d45f36927eb2fc7bbce541d8fc091f0e13f2e621a8e76fc416e5be35062d
|
7
|
+
data.tar.gz: 24629a74cd2367cda3718599042e58314f8fbcba501d7cb4b7525881a2fe4acc9c31895cf21d027843491aebbd6b1460c5d927866a52fe580990ee09d43aa092
|
data/CHANGES
CHANGED
@@ -1,3 +1,7 @@
|
|
1
|
+
1.4.1 (2020-05-14)
|
2
|
+
=====================
|
3
|
+
* Fix compiling on older versions of gcc that do not default to c99 (Charlie Savage)
|
4
|
+
|
1
5
|
1.4.0 (2020-05-12)
|
2
6
|
=====================
|
3
7
|
* API change - remove merge_fibers support since it resulted in incorrect results or crashes (Charlie Savage)
|
data/ext/ruby_prof/extconf.rb
CHANGED
@@ -3,4 +3,10 @@ require "mkmf"
|
|
3
3
|
# This function was added in Ruby 2.5, so once Ruby 2.4 is no longer supported this can be removed
|
4
4
|
have_func('rb_tracearg_callee_id', ["ruby.h"])
|
5
5
|
|
6
|
+
# We want to intermix declarations and code (ie, don't define all variables at the top of the method)
|
7
|
+
$CFLAGS += ' -std=c99'
|
8
|
+
|
9
|
+
# And since we are using C99 we want to disable Ruby sending these warnings to gcc
|
10
|
+
CONFIG['warnflags'].gsub!('-Wdeclaration-after-statement', '')
|
11
|
+
|
6
12
|
create_makefile("ruby_prof")
|
Binary file
|
data/lib/ruby-prof/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ruby-prof
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.4.
|
4
|
+
version: 1.4.1
|
5
5
|
platform: x64-mingw32
|
6
6
|
authors:
|
7
7
|
- Shugo Maeda, Charlie Savage, Roger Pack, Stefan Kaes
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-05-
|
11
|
+
date: 2020-05-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: minitest
|
@@ -99,7 +99,7 @@ files:
|
|
99
99
|
- ext/ruby_prof/ruby_prof.h
|
100
100
|
- ext/ruby_prof/vc/ruby_prof.sln
|
101
101
|
- ext/ruby_prof/vc/ruby_prof.vcxproj
|
102
|
-
-
|
102
|
+
- lib/2.7/ruby_prof.so
|
103
103
|
- lib/ruby-prof.rb
|
104
104
|
- lib/ruby-prof/assets/call_stack_printer.html.erb
|
105
105
|
- lib/ruby-prof/assets/call_stack_printer.png
|
@@ -131,7 +131,6 @@ files:
|
|
131
131
|
- test/basic_test.rb
|
132
132
|
- test/call_tree_visitor_test.rb
|
133
133
|
- test/call_trees_test.rb
|
134
|
-
- test/client.rb
|
135
134
|
- test/duplicate_names_test.rb
|
136
135
|
- test/dynamic_method_test.rb
|
137
136
|
- test/enumerable_test.rb
|
@@ -164,7 +163,6 @@ files:
|
|
164
163
|
- test/printing_recursive_graph_test.rb
|
165
164
|
- test/rack_test.rb
|
166
165
|
- test/recursive_test.rb
|
167
|
-
- test/server.rb
|
168
166
|
- test/singleton_test.rb
|
169
167
|
- test/stack_printer_test.rb
|
170
168
|
- test/start_stop_test.rb
|
@@ -179,7 +177,7 @@ metadata:
|
|
179
177
|
bug_tracker_uri: https://github.com/ruby-prof/ruby-prof/issues
|
180
178
|
changelog_uri: https://github.com/ruby-prof/ruby-prof/blob/master/CHANGES
|
181
179
|
documentation_uri: https://ruby-prof.github.io/
|
182
|
-
source_code_uri: https://github.com/ruby-prof/ruby-prof/tree/v1.4.
|
180
|
+
source_code_uri: https://github.com/ruby-prof/ruby-prof/tree/v1.4.1
|
183
181
|
post_install_message:
|
184
182
|
rdoc_options: []
|
185
183
|
require_paths:
|
@@ -1,132 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
2
|
-
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
3
|
-
<ItemGroup Label="ProjectConfigurations">
|
4
|
-
<ProjectConfiguration Include="Debug|ARM">
|
5
|
-
<Configuration>Debug</Configuration>
|
6
|
-
<Platform>ARM</Platform>
|
7
|
-
</ProjectConfiguration>
|
8
|
-
<ProjectConfiguration Include="Release|ARM">
|
9
|
-
<Configuration>Release</Configuration>
|
10
|
-
<Platform>ARM</Platform>
|
11
|
-
</ProjectConfiguration>
|
12
|
-
<ProjectConfiguration Include="Debug|ARM64">
|
13
|
-
<Configuration>Debug</Configuration>
|
14
|
-
<Platform>ARM64</Platform>
|
15
|
-
</ProjectConfiguration>
|
16
|
-
<ProjectConfiguration Include="Release|ARM64">
|
17
|
-
<Configuration>Release</Configuration>
|
18
|
-
<Platform>ARM64</Platform>
|
19
|
-
</ProjectConfiguration>
|
20
|
-
<ProjectConfiguration Include="Debug|x86">
|
21
|
-
<Configuration>Debug</Configuration>
|
22
|
-
<Platform>x86</Platform>
|
23
|
-
</ProjectConfiguration>
|
24
|
-
<ProjectConfiguration Include="Release|x86">
|
25
|
-
<Configuration>Release</Configuration>
|
26
|
-
<Platform>x86</Platform>
|
27
|
-
</ProjectConfiguration>
|
28
|
-
<ProjectConfiguration Include="Debug|x64">
|
29
|
-
<Configuration>Debug</Configuration>
|
30
|
-
<Platform>x64</Platform>
|
31
|
-
</ProjectConfiguration>
|
32
|
-
<ProjectConfiguration Include="Release|x64">
|
33
|
-
<Configuration>Release</Configuration>
|
34
|
-
<Platform>x64</Platform>
|
35
|
-
</ProjectConfiguration>
|
36
|
-
</ItemGroup>
|
37
|
-
<PropertyGroup Label="Globals">
|
38
|
-
<ProjectGuid>{fd79d690-c808-464c-a46b-01188609976e}</ProjectGuid>
|
39
|
-
<Keyword>Linux</Keyword>
|
40
|
-
<RootNamespace>Project1</RootNamespace>
|
41
|
-
<MinimumVisualStudioVersion>15.0</MinimumVisualStudioVersion>
|
42
|
-
<ApplicationType>Linux</ApplicationType>
|
43
|
-
<ApplicationTypeRevision>1.0</ApplicationTypeRevision>
|
44
|
-
<TargetLinuxPlatform>Generic</TargetLinuxPlatform>
|
45
|
-
<LinuxProjectType>{2238F9CD-F817-4ECC-BD14-2524D2669B35}</LinuxProjectType>
|
46
|
-
</PropertyGroup>
|
47
|
-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
48
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'" Label="Configuration">
|
49
|
-
<UseDebugLibraries>true</UseDebugLibraries>
|
50
|
-
</PropertyGroup>
|
51
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'" Label="Configuration">
|
52
|
-
<UseDebugLibraries>false</UseDebugLibraries>
|
53
|
-
</PropertyGroup>
|
54
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'" Label="Configuration">
|
55
|
-
<UseDebugLibraries>true</UseDebugLibraries>
|
56
|
-
</PropertyGroup>
|
57
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'" Label="Configuration">
|
58
|
-
<UseDebugLibraries>false</UseDebugLibraries>
|
59
|
-
</PropertyGroup>
|
60
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
61
|
-
<UseDebugLibraries>true</UseDebugLibraries>
|
62
|
-
<PlatformToolset>WSL_1_0</PlatformToolset>
|
63
|
-
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
64
|
-
</PropertyGroup>
|
65
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
66
|
-
<UseDebugLibraries>false</UseDebugLibraries>
|
67
|
-
<PlatformToolset>WSL_1_0</PlatformToolset>
|
68
|
-
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
69
|
-
</PropertyGroup>
|
70
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'" Label="Configuration">
|
71
|
-
<UseDebugLibraries>false</UseDebugLibraries>
|
72
|
-
</PropertyGroup>
|
73
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'" Label="Configuration">
|
74
|
-
<UseDebugLibraries>true</UseDebugLibraries>
|
75
|
-
</PropertyGroup>
|
76
|
-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
77
|
-
<ImportGroup Label="ExtensionSettings" />
|
78
|
-
<ImportGroup Label="Shared" />
|
79
|
-
<ImportGroup Label="PropertySheets" />
|
80
|
-
<PropertyGroup Label="UserMacros" />
|
81
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
82
|
-
<TargetName>ruby_prof</TargetName>
|
83
|
-
<OutDir>../usr/local/lib64/gems/ruby/ruby-prof-1.3.2/</OutDir>
|
84
|
-
</PropertyGroup>
|
85
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
86
|
-
<TargetName>ruby_prof</TargetName>
|
87
|
-
</PropertyGroup>
|
88
|
-
<ItemGroup>
|
89
|
-
<ClInclude Include="..\rp_aggregate_call_tree.h" />
|
90
|
-
<ClInclude Include="..\rp_allocation.h" />
|
91
|
-
<ClInclude Include="..\rp_call_tree.h" />
|
92
|
-
<ClInclude Include="..\rp_call_trees.h" />
|
93
|
-
<ClInclude Include="..\rp_measurement.h" />
|
94
|
-
<ClInclude Include="..\rp_method.h" />
|
95
|
-
<ClInclude Include="..\rp_profile.h" />
|
96
|
-
<ClInclude Include="..\rp_stack.h" />
|
97
|
-
<ClInclude Include="..\rp_thread.h" />
|
98
|
-
<ClInclude Include="..\ruby_prof.h" />
|
99
|
-
</ItemGroup>
|
100
|
-
<ItemGroup>
|
101
|
-
<ClCompile Include="..\rp_aggregate_call_tree.c" />
|
102
|
-
<ClCompile Include="..\rp_allocation.c" />
|
103
|
-
<ClCompile Include="..\rp_call_tree.c" />
|
104
|
-
<ClCompile Include="..\rp_call_trees.c" />
|
105
|
-
<ClCompile Include="..\rp_measurement.c" />
|
106
|
-
<ClCompile Include="..\rp_measure_allocations.c" />
|
107
|
-
<ClCompile Include="..\rp_measure_memory.c" />
|
108
|
-
<ClCompile Include="..\rp_measure_process_time.c" />
|
109
|
-
<ClCompile Include="..\rp_measure_wall_time.c" />
|
110
|
-
<ClCompile Include="..\rp_method.c" />
|
111
|
-
<ClCompile Include="..\rp_profile.c" />
|
112
|
-
<ClCompile Include="..\rp_stack.c" />
|
113
|
-
<ClCompile Include="..\rp_thread.c" />
|
114
|
-
<ClCompile Include="..\ruby_prof.c" />
|
115
|
-
</ItemGroup>
|
116
|
-
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
117
|
-
<Link>
|
118
|
-
<LibraryDependencies>ruby</LibraryDependencies>
|
119
|
-
</Link>
|
120
|
-
<ClCompile>
|
121
|
-
<PreprocessorDefinitions>
|
122
|
-
</PreprocessorDefinitions>
|
123
|
-
</ClCompile>
|
124
|
-
</ItemDefinitionGroup>
|
125
|
-
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
126
|
-
<Link>
|
127
|
-
<LibraryDependencies>ruby</LibraryDependencies>
|
128
|
-
</Link>
|
129
|
-
</ItemDefinitionGroup>
|
130
|
-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
131
|
-
<ImportGroup Label="ExtensionTargets" />
|
132
|
-
</Project>
|
data/test/client.rb
DELETED
data/test/server.rb
DELETED
@@ -1,64 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
|
3
|
-
require 'socket'
|
4
|
-
require 'fiber'
|
5
|
-
|
6
|
-
# The full implementation is given here, in order to show all the parts. A simpler implementation is given below.
|
7
|
-
class Reactor
|
8
|
-
def initialize
|
9
|
-
@readable = {}
|
10
|
-
@writable = {}
|
11
|
-
end
|
12
|
-
|
13
|
-
def run
|
14
|
-
while @readable.any? or @writable.any?
|
15
|
-
readable, writable = IO.select(@readable.keys, @writable.keys, [])
|
16
|
-
|
17
|
-
readable.each do |io|
|
18
|
-
@readable[io].resume
|
19
|
-
end
|
20
|
-
|
21
|
-
writable.each do |io|
|
22
|
-
@writable[io].resume
|
23
|
-
end
|
24
|
-
end
|
25
|
-
end
|
26
|
-
|
27
|
-
def wait_readable(io)
|
28
|
-
@readable[io] = Fiber.current
|
29
|
-
Fiber.yield
|
30
|
-
@readable.delete(io)
|
31
|
-
|
32
|
-
return yield if block_given?
|
33
|
-
end
|
34
|
-
|
35
|
-
def wait_writable(io)
|
36
|
-
@writable[io] = Fiber.current
|
37
|
-
Fiber.yield
|
38
|
-
@writable.delete(io)
|
39
|
-
|
40
|
-
return yield if block_given?
|
41
|
-
end
|
42
|
-
end
|
43
|
-
|
44
|
-
server = TCPServer.new('localhost', 9090)
|
45
|
-
reactor = Reactor.new
|
46
|
-
|
47
|
-
Fiber.new do
|
48
|
-
loop do
|
49
|
-
client = reactor.wait_readable(server) do
|
50
|
-
server.accept
|
51
|
-
end
|
52
|
-
|
53
|
-
Fiber.new do
|
54
|
-
while buffer = reactor.wait_readable(client) {client.gets}
|
55
|
-
reactor.wait_writable(client)
|
56
|
-
client.puts(buffer)
|
57
|
-
end
|
58
|
-
|
59
|
-
client.close
|
60
|
-
end.resume
|
61
|
-
end
|
62
|
-
end.resume
|
63
|
-
|
64
|
-
reactor.run
|