where is the full stack trace assigned to its id

Hi, GHC version: win32 6.6.1 App was compiled with ghc -make -prof -auto-all <files> ... and run with app.exe <appSpecificOptions> +RTS -hc The result is that app.exe.hp contains the sample items in the format like (651)/createAndRunWindows/... 180 The question is where can I find the full stack trace corresponding to 651 identification number? I expected it to be in app.exe.prof (as it is with -hr option), but that file is empty. Do I miss some other RTS option? Peter.

On Sun, Sep 23, 2007 at 10:39:48AM +0200, Peter Hercek wrote:
App was compiled with ghc -make -prof -auto-all <files> ... and run with app.exe <appSpecificOptions> +RTS -hc
I expected it to be in app.exe.prof (as it is with -hr option), but that file is empty.
If you also pass -p when running the program then the file contents will be created. Thanks Ian

Ian Lynagh wrote:
On Sun, Sep 23, 2007 at 10:39:48AM +0200, Peter Hercek wrote:
App was compiled with ghc -make -prof -auto-all <files> ... and run with app.exe <appSpecificOptions> +RTS -hc
I expected it to be in app.exe.prof (as it is with -hr option), but that file is empty.
If you also pass -p when running the program then the file contents will be created.
Och, I see, the "no." column is it. Thank you, Peter.
participants (2)
-
Ian Lynagh
-
Peter Hercek