This is the mail archive of the insight-prs@sources.redhat.com mailing list for the Insight project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: insight/33


The following reply was made to PR insight/33; it has been noted by GNATS.

From: Fernando Nasser <fnasser@cygnus.com>
To: richard.wittmer@ericsson.com, insight-gnats@sourceware.cygnus.com,
        nobody@sourceware.cygnus.com
Cc:  
Subject: Re: insight/33
Date: Fri, 06 Oct 2000 18:09:00 +0000

 http://sources.redhat.com/cgi-bin/gnatsweb.pl?cmd=view&pr=33&database=insight
 
 Your application is probably just running.  The debugger will only regain control when
 it hits a breakpoint or receives a signal (so it probably missed the breakpoint you set --
 it could be even there already, depending on what your "Target Settings" are).
 
 To test this, send your application a SIGINT from some other window (with "kill") and
 see if the debugger regains control.
 
 You could also use the GUI's "STOP" button, but your GUI seems to be locked.
 The following patch fixes that particular problem, but you'll have to rebuild/reinstall
 your gdb.
 
 If you need any further help, please post to 
    insight@sources.redhat.com
 
 I will close this report as it is not exactly a bug.
 
 Regards,
 F.
 
 
 Index: gdbtk/generic/gdbtk.c
 ===================================================================
 RCS file: /cvs/src/src/gdb/gdbtk/generic/gdbtk.c,v
 retrieving revision 1.6
 diff -c -p -r1.6 gdbtk.c
 *** gdbtk.c     2000/07/02 20:07:07     1.6
 --- gdbtk.c     2000/10/05 15:32:31
 *************** target_is_native (t)
 *** 329,335 ****
   
     if (STREQ (name, "exec") || STREQ (name, "hpux-threads")
         || STREQ (name, "child") || STREQ (name, "procfs")
 !       || STREQ (name, "solaris-threads") || STREQ (name, "linuxthreads"))
       return 1;
   
     return 0;
 --- 329,336 ----
   
     if (STREQ (name, "exec") || STREQ (name, "hpux-threads")
         || STREQ (name, "child") || STREQ (name, "procfs")
 !       || STREQ (name, "solaris-threads") || STREQ (name, "linuxthreads")
 !       || STREQ (name, "multi-thread"))
       return 1;
   
     return 0;
 
 
 -- 
 Fernando Nasser
 Red Hat Canada Ltd.                     E-Mail:  fnasser@cygnus.com
 2323 Yonge Street, Suite #300
 Toronto, Ontario   M4P 2C9

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]