We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d82ae11 commit 8eb86c5Copy full SHA for 8eb86c5
src/parameters.jl
@@ -138,7 +138,11 @@ function Base.copy(p::Parameters)
138
p.time_tolerance,
139
p.memory_tolerance,
140
p.experimental_enable_linux_perf,
141
- p.linux_perf_options, # Is this really a copy, the values contain Expr's which store Vector's.
+ (
142
+ events = copy(p.linux_perf_options.events),
143
+ spaces = copy(p.linux_perf_options.spaces),
144
+ threads = copy(p.linux_perf_options.threads)
145
+ ),
146
)
147
end
148
0 commit comments