views:

72

answers:

2

Erlang's got its multi-process debugger that let's you see all your processes. Anything similar in Haskell?

+6  A: 

There are two wonderful, world class tools:

ThreadScope is by far and away the best tool for thread profiling I've seen in any non-HPC setting.

Don Stewart
+1  A: 

There's the Concurrent Haskell Debugger, which has existed since 2002 and which works with up-to-date ghcs. I've never used, nor heard any reports of experience using it, but it sounds like the right sort of thing.

CHD is about stepping backwards from deadlocks and so on. It's not the kind of control panel you get with Erlang, which I'm somewhat confident doesn't exist for Haskell.

Charles Stewart