public inbox for gdb@sourceware.org
 help / color / mirror / Atom feed
* How GDB handle this case while program works well in GDB but crash in mormal mode
       [not found] <2be9765805060507424526b153@mail.gmail.com>
@ 2005-06-05 14:56 ` Renzhong Xiao
  2005-06-05 20:57   ` Bob Rossi
  2005-06-07 16:10   ` Dave Korn
  0 siblings, 2 replies; 4+ messages in thread
From: Renzhong Xiao @ 2005-06-05 14:56 UTC (permalink / raw)
  To: gdb

Hi,
    I have some trouble in using GDB 6.3.50_2004-12-28-cvs in Cygwin
to debug the mencoder (which is a program in MPlayer).When I run
mencoder in normal mode,it will pop up an error message saying
mencoder.exe has error and will be closed. But I run mencoder in
gdb,it works well.
    I don't know how to find this bug in GDB,Does GDB has the some
feature to handle this case?

    Any information will be very appreciate!

Renzhong Xiao

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: How GDB handle this case while program works well in GDB but crash in mormal mode
  2005-06-05 14:56 ` How GDB handle this case while program works well in GDB but crash in mormal mode Renzhong Xiao
@ 2005-06-05 20:57   ` Bob Rossi
  2005-06-06  4:34     ` Renzhong Xiao
  2005-06-07 16:10   ` Dave Korn
  1 sibling, 1 reply; 4+ messages in thread
From: Bob Rossi @ 2005-06-05 20:57 UTC (permalink / raw)
  To: Renzhong Xiao; +Cc: gdb

On Sun, Jun 05, 2005 at 10:56:43PM +0800, Renzhong Xiao wrote:
> Hi,
>     I have some trouble in using GDB 6.3.50_2004-12-28-cvs in Cygwin
> to debug the mencoder (which is a program in MPlayer).When I run
> mencoder in normal mode,it will pop up an error message saying
> mencoder.exe has error and will be closed. But I run mencoder in
> gdb,it works well.
>     I don't know how to find this bug in GDB,Does GDB has the some
> feature to handle this case?
> 
>     Any information will be very appreciate!

I'm not an expert but there are probably many issues that could make this
appear. For instance, if timing is important, your program might run a
little slower in GDB than normally. If this is the case, things could
potentially run different in your program. Also, if there are memory
runtime error's in MPlayer, your program could act different when run in
different environments.

I would suggest using valgrind in Linux on MPlayer to see if there are
any memory runtime errors.

Bob Rossi

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: How GDB handle this case while program works well in GDB but crash in mormal mode
  2005-06-05 20:57   ` Bob Rossi
@ 2005-06-06  4:34     ` Renzhong Xiao
  0 siblings, 0 replies; 4+ messages in thread
From: Renzhong Xiao @ 2005-06-06  4:34 UTC (permalink / raw)
  To: Renzhong Xiao, gdb

Thanks for your timely response, I will download valgrind and have a try.

Renzhong Xiao

On 6/6/05, Bob Rossi <bob@brasko.net> wrote:
> On Sun, Jun 05, 2005 at 10:56:43PM +0800, Renzhong Xiao wrote:
> > Hi,
> >     I have some trouble in using GDB 6.3.50_2004-12-28-cvs in Cygwin
> > to debug the mencoder (which is a program in MPlayer).When I run
> > mencoder in normal mode,it will pop up an error message saying
> > mencoder.exe has error and will be closed. But I run mencoder in
> > gdb,it works well.
> >     I don't know how to find this bug in GDB,Does GDB has the some
> > feature to handle this case?
> >
> >     Any information will be very appreciate!
> 
> I'm not an expert but there are probably many issues that could make this
> appear. For instance, if timing is important, your program might run a
> little slower in GDB than normally. If this is the case, things could
> potentially run different in your program. Also, if there are memory
> runtime error's in MPlayer, your program could act different when run in
> different environments.
> 
> I would suggest using valgrind in Linux on MPlayer to see if there are
> any memory runtime errors.
> 
> Bob Rossi
>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* RE: How GDB handle this case while program works well in GDB but crash in mormal mode
  2005-06-05 14:56 ` How GDB handle this case while program works well in GDB but crash in mormal mode Renzhong Xiao
  2005-06-05 20:57   ` Bob Rossi
@ 2005-06-07 16:10   ` Dave Korn
  1 sibling, 0 replies; 4+ messages in thread
From: Dave Korn @ 2005-06-07 16:10 UTC (permalink / raw)
  To: 'Renzhong Xiao', gdb

----Original Message----
>From: Renzhong Xiao
>Sent: 05 June 2005 15:57

> Hi,
>     I have some trouble in using GDB 6.3.50_2004-12-28-cvs in Cygwin
> to debug the mencoder (which is a program in MPlayer).When I run
> mencoder in normal mode,it will pop up an error message saying
> mencoder.exe has error and will be closed. But I run mencoder in
> gdb,it works well.
>     I don't know how to find this bug in GDB,Does GDB has the some
> feature to handle this case?
> 
>     Any information will be very appreciate!
> 
> Renzhong Xiao


  Perhaps you can use the cygwin just-in-time debugging ability to solve the
problem; that way the program will run as usual, without the debugger
attached, up to the point when the error occurs; then cygwin will attach the
debugger once the error has happened.  Hopefully that means the initial
stages of running the program will be undisturbed and the error will not be
masked.

  To make this work, add 'error_start=C:\cygwin\bin\gdb.exe' (or whatever
else is the win32 path to gdb.exe, according to where you installed cygwin)
to your $CYGWIN environment variable before you start a cygwin shell, then
run mencoder.  Hopefully as soon as it crashes cygwin will attach teh
debugger for you.


    cheers,
      DaveK
-- 
Can't think of a witty .sigline today....

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2005-06-07 16:10 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <2be9765805060507424526b153@mail.gmail.com>
2005-06-05 14:56 ` How GDB handle this case while program works well in GDB but crash in mormal mode Renzhong Xiao
2005-06-05 20:57   ` Bob Rossi
2005-06-06  4:34     ` Renzhong Xiao
2005-06-07 16:10   ` Dave Korn

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).