diff options
author | Araq <rumpf_a@web.de> | 2020-03-10 12:46:19 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2020-03-11 09:26:57 +0100 |
commit | 3aed8ff4326cbfabef074b28366d487e2bdc8ae2 (patch) | |
tree | 89430804568228e7830d55a111d20a4356d01c15 | |
parent | 60f8fdcdabf99ae60f7a743cfd682bd7c320408b (diff) | |
download | Nim-3aed8ff4326cbfabef074b28366d487e2bdc8ae2.tar.gz |
fixes async regression
-rw-r--r-- | lib/pure/asyncdispatch.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/asyncdispatch.nim b/lib/pure/asyncdispatch.nim index 732381ccb..5e4e3f699 100644 --- a/lib/pure/asyncdispatch.nim +++ b/lib/pure/asyncdispatch.nim @@ -1122,7 +1122,7 @@ else: new result result.selector = newSelector[AsyncData]() result.timers.newHeapQueue() - result.callbacks = initDeque[proc ()](InitDelayedCallbackListSize) + result.callbacks = initDeque[proc () {.closure, gcsafe.}](InitDelayedCallbackListSize) var gDisp{.threadvar.}: owned PDispatcher ## Global dispatcher |