Re: upper limit of increasing stack size.
From: Oleg Starodumov (oleg_staro_at_hotmail.com)
Date: 07/28/04
- Next message: Antonin Hofmann: "pure virtual destructor"
- Previous message: Jochen Kalmbach: "Re: how to convert UTF-8 to ASCII? Thanks very much."
- In reply to: ShivaP: "upper limit of increasing stack size."
- Messages sorted by: [ date ] [ thread ]
Date: Wed, 28 Jul 2004 11:14:37 +0300
> Is there any 3rd party freeware / share ware / paid tool which would display the
> function stack in a multithreaded environment..Better than call stack in vc++ IDE..?
>
You can use WinDbg debugger:
http://www.microsoft.com/whdc/ddk/debugging/default.mspx
"kf" command will show the size of every stack frame (in the first column);
you can use it to determine which function is eating the most of the stack space.
By default, the number of frames shown is 20, so you might also want to change
the default to a bigger value using ".kframes" command.
To display call stack for all threads, use "~*kf".
Regards,
Oleg
- Next message: Antonin Hofmann: "pure virtual destructor"
- Previous message: Jochen Kalmbach: "Re: how to convert UTF-8 to ASCII? Thanks very much."
- In reply to: ShivaP: "upper limit of increasing stack size."
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|