Files
Nim/tests/threads/t7172.nim
2021-07-21 09:47:06 +02:00

33 lines
511 B
Nim

discard """
output: '''
In doStuff()
In initProcess()
initProcess() done
TEST
Crashes before getting here!
'''
joinable: false
"""
import std/os
proc whatever() {.thread, nimcall.} =
echo("TEST")
proc initProcess(): void =
echo("In initProcess()")
var thread: Thread[void]
createThread(thread, whatever)
echo("initProcess() done")
joinThread(thread)
proc doStuff(): void =
echo("In doStuff()")
# ...
initProcess()
sleep(500)
# ...
echo("Crashes before getting here!")
doStuff()