
2 Aug
2007
2 Aug
'07
12:18 p.m.
On Thu, Aug 02, 2007 at 10:59:12AM +0200, Cristian Perfumo wrote:
By the way... does ticky-ticky allow monitoring multithreaded programs? I ask this because the other way of learning data about the execution (compiling with -prof) is not compatible with -threaded options. In other words, you can't compile a Haskell program with -prof and -threaded options at the same time.
You don't need -threaded to run multithreaded programs. -threaded will make them run *faster* on >1-core machines, but the normal RTS will run multiple Haskell threads just fine on its single OS-thread. Stefan