From 6087cbfa017146c26ca8f4d4e990ceadf1810969 Mon Sep 17 00:00:00 2001 From: Zentrik Date: Fri, 2 Feb 2024 15:45:37 +0000 Subject: [PATCH] Update probes.md to remove workaround Given #41616 merged I assume this workaround can be removed. I haven't tested it. --- doc/src/devdocs/probes.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/doc/src/devdocs/probes.md b/doc/src/devdocs/probes.md index d15723e945462..cc7f7a080d18e 100644 --- a/doc/src/devdocs/probes.md +++ b/doc/src/devdocs/probes.md @@ -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