mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-08 22:13:29 +00:00
Mark setupForeignThreadGc and initGC as gcsafe (#5353)
This commit is contained in:
committed by
Andreas Rumpf
parent
ca39e113d5
commit
61b4bb5af5
@@ -2630,7 +2630,7 @@ when not defined(JS): #and not defined(nimscript):
|
||||
|
||||
when hasAlloc:
|
||||
when not defined(gcStack):
|
||||
proc initGC()
|
||||
proc initGC() {.gcsafe.}
|
||||
when not defined(boehmgc) and not defined(useMalloc) and
|
||||
not defined(gogc) and not defined(gcStack):
|
||||
proc initAllocator() {.inline.}
|
||||
|
||||
@@ -135,7 +135,7 @@ when allowForeignThreadGc:
|
||||
var
|
||||
localGcInitialized {.rtlThreadVar.}: bool
|
||||
|
||||
proc setupForeignThreadGc*() =
|
||||
proc setupForeignThreadGc*() {.gcsafe.} =
|
||||
## Call this if you registered a callback that will be run from a thread not
|
||||
## under your control. This has a cheap thread-local guard, so the GC for
|
||||
## this thread will only be initialized once per thread, no matter how often
|
||||
|
||||
Reference in New Issue
Block a user