Skip to content

Commit

Permalink
Update probes.md to remove workaround
Browse files Browse the repository at this point in the history
Given JuliaLang#41616 merged I assume this workaround can be removed. I haven't tested it.
  • Loading branch information
Zentrik authored Feb 2, 2024
1 parent d54a455 commit 6087cbf
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions doc/src/devdocs/probes.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,6 @@ fib(x) = x <= 1 ? 1 : fib(x-1) + fib(x-2)
beaver = @spawn begin
while true
fib(30)
# This safepoint is necessary until #41616, since otherwise this
# loop will never yield to GC.
GC.safepoint()
end
end
Expand Down

0 comments on commit 6087cbf

Please sign in to comment.