5 ms·
I take it you mean OS-level threads then?
by benmos 12y ago
I take it you mean OS-level threads then?
- implicit 12y agoWe track Haskell threads. edit: Found the code. :) We rolled our own implementation. Our WAI application action increments a counter and decrements it again whenever an HTTP request is received and completed. It doesn't track threads created as a part of HTTP request handling, but we don't allow those actions to forkIO anyway. There hasn't been any demand for it.
- thinkpad20 12y ago... so, how? Isn't that what he was asking?
- benmos 12y agoAh, right, that makes sense - thanks.