Using Control.Concurrent and forkIO there are some cases that will leave the thread in a blocked state (this is especially frequent under windows with networking) so even if one try to use killThread the exception is never raised in the thread. Is there any other way to force a thread to die?
My attempt to terminate the whole application with exitFailure from a helper thread don't have any effect under these conditions.
The Glorious Glasgow Haskell Compilation System, version 6.12.1 HP 2010.1.0.0
EDIT: To clear things up, I don't want to terminate the application, I would prefer to just kill the thread that have been blocked for a very long time. However there are numerous example even here at SO with complete code using the exitWith in a helper thread and that kind of scheme don't work under the conditions I have.