|
From: Vijeth B. <vi...@ya...> - 2003-07-19 09:18:42
|
Hi all, My program runs perfectly fine when run with valgrind. But dumps on Sig11 when run without it. How do I find out where the problem is. Thanks and Regards, Vijeth __________________________________ Do you Yahoo!? SBC Yahoo! DSL - Now only $29.95 per month! http://sbc.yahoo.com |
|
From: Bastien C. <ba...@ch...> - 2003-07-19 11:01:42
|
On Saturday 19 July 2003 11:18, Vijeth Bhat wrote:
> My program runs perfectly fine when run with
> valgrind. But dumps on Sig11 when run without it. How
> do I find out where the problem is.
I remember that sig11 one of those things that one doesn=B4t want to see at=
all=20
as cases I saw had RAM problems. After a quick search
http://www.google.com/search?q=3Dsig11
I think you'd like to read at least this page
http://www.bitwizard.nl/sig11/
But perhaps I=B4m all wrong here.
Salut,
Bastien
=2D-=20
-- The universe has its own cure for stupidity. --
-- Unfortunately, it doesn't always apply it. --
|
|
From: Igmar P. <mai...@jd...> - 2003-07-19 12:59:20
|
> My program runs perfectly fine when run with > valgrind. But dumps on Sig11 when run without it. How > do I find out where the problem is. 1) Compile app with -g 2) gdb executable in gdb : 'run' as command when it crashes, type 'where' Igmar |