kuribas 2017-03-07 23:47:31
I guess ghc (and base) made a lot of progress in 4 years...
Cale 2017-03-07 23:57:42
Yeah, it looks like it just describes what takes place immediately following that bit of synchronization
Yttrill 2017-03-07 23:58:11
i have a suspicion that there is a per thread local heap that can be collected without a world stop
Cale 2017-03-07 23:58:22
yes, there is
Yttrill 2017-03-07 23:58:37
but a stop is still required, i'm curious how to organise the stop
Yttrill 2017-03-07 23:59:05
the Boehm collector using OS hacks eg SIGSTOP on Linux
Yttrill 2017-03-07 23:59:25
but i have no idea how that helps find the stack top
Yttrill 2017-03-07 23:59:44
i know there's a way to do this on Windows