public inbox for gdb@sourceware.org
 help / color / mirror / Atom feed
* Cannot fetch general-purpose registers for thread 1342445920: generic error
@ 2006-06-19 17:35 Christoph Bartoschek
  2006-06-20 12:33 ` Daniel Jacobowitz
  0 siblings, 1 reply; 8+ messages in thread
From: Christoph Bartoschek @ 2006-06-19 17:35 UTC (permalink / raw)
  To: gdb

Hi,

when I want to debug my application I often get the following error:

Cannot fetch general-purpose registers for thread 1342445920: generic error

After this message I have to detach gdb and reattach it. What could be the 
problem? How can I avoid these errors?

Christoph Bartoschek

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

* Re: Cannot fetch general-purpose registers for thread 1342445920: generic error
  2006-06-19 17:35 Cannot fetch general-purpose registers for thread 1342445920: generic error Christoph Bartoschek
@ 2006-06-20 12:33 ` Daniel Jacobowitz
  2006-06-20 13:00   ` Christoph Bartoschek
  0 siblings, 1 reply; 8+ messages in thread
From: Daniel Jacobowitz @ 2006-06-20 12:33 UTC (permalink / raw)
  To: Christoph Bartoschek; +Cc: gdb

On Mon, Jun 19, 2006 at 05:19:00PM +0200, Christoph Bartoschek wrote:
> Hi,
> 
> when I want to debug my application I often get the following error:
> 
> Cannot fetch general-purpose registers for thread 1342445920: generic error
> 
> After this message I have to detach gdb and reattach it. What could be the 
> problem? How can I avoid these errors?

We have no idea - sorry, but you need to tell us a lot more about what
you're doing.  At a minimum:

  - Is this NPTL or LinuxThreads?
  - What architecture and kernel version are you using?
  - What were you doing when it happened?
  - What version of GDB are you using?

-- 
Daniel Jacobowitz
CodeSourcery

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

* Re: Cannot fetch general-purpose registers for thread 1342445920: generic error
  2006-06-20 12:33 ` Daniel Jacobowitz
@ 2006-06-20 13:00   ` Christoph Bartoschek
  2006-06-20 13:20     ` Daniel Jacobowitz
  0 siblings, 1 reply; 8+ messages in thread
From: Christoph Bartoschek @ 2006-06-20 13:00 UTC (permalink / raw)
  To: gdb


> We have no idea - sorry, but you need to tell us a lot more about what
> you're doing.  At a minimum:
>
>   - Is this NPTL or LinuxThreads?
>   - What architecture and kernel version are you using?
>   - What were you doing when it happened?
>   - What version of GDB are you using?

This is NPTL.

The code is compiled on a "Red Hat Enterprise Linux WS release 3 (Taroon 
Update 7)" machine. 

The compiler version is:

g++ (GCC) 3.2.3 20030502 (Red Hat Linux 3.2.3-54)

The architecture is x86_64 AMD Opteron. I have the same error on different 
Kernel Versions:

The RedHat machine:
Linux feiler 2.4.21-40.ELsmp #1 SMP Thu Feb 2 22:13:55 EST 2006 x86_64 x86_64 
x86_64 GNU/Linux

A Suse Linux 10.0 machine:
Linux eos 2.6.13-15.7-smp #1 SMP Tue Nov 29 14:32:29 UTC 2005 x86_64 x86_64 
x86_64 GNU/Linux

I have also tried different gdb versions:
GNU gdb Red Hat Linux (6.3.0.0-1.90rh) - This GDB was configured 
as "x86_64-redhat-linux-gnu".
GNU gdb 6.3 - This GDB was configured as "x86_64-suse-linux".
GNU gdb 6.4 - This GDB was configured as "x86_64-unknown-linux-gnu".

What are we doing?

I am not sure what we are doing when the error occurs because instrumenting 
the code with printf is very tedious and stepping towards the error takes to 
long (maybe one could use a script that stepps forward till the error 
occurs). But the error seems to occur on different places: When a gzip job is 
forked and waited for, when threads are joined or when an exception is 
thrown. The exception case is not deterministic and seems to only occur when 
I use "catch throw".

Christoph Bartoschek

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

* Re: Cannot fetch general-purpose registers for thread 1342445920: generic error
  2006-06-20 13:00   ` Christoph Bartoschek
@ 2006-06-20 13:20     ` Daniel Jacobowitz
  2006-06-20 13:27       ` Christoph Bartoschek
  0 siblings, 1 reply; 8+ messages in thread
From: Daniel Jacobowitz @ 2006-06-20 13:20 UTC (permalink / raw)
  To: Christoph Bartoschek; +Cc: gdb

On Tue, Jun 20, 2006 at 02:56:57PM +0200, Christoph Bartoschek wrote:
> What are we doing?
> 
> I am not sure what we are doing when the error occurs because instrumenting 
> the code with printf is very tedious and stepping towards the error takes to 
> long (maybe one could use a script that stepps forward till the error 
> occurs). But the error seems to occur on different places: When a gzip job is 
> forked and waited for, when threads are joined or when an exception is 
> thrown. The exception case is not deterministic and seems to only occur when 
> I use "catch throw".

I didn't mean "what is the program doing", I meant "what are you doing
with gdb".  A session transcript might be helpful.  I'm not sure what
catch throw could have to do with this, but that might be the trigger.

-- 
Daniel Jacobowitz
CodeSourcery

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

* Re: Cannot fetch general-purpose registers for thread 1342445920: generic error
  2006-06-20 13:20     ` Daniel Jacobowitz
@ 2006-06-20 13:27       ` Christoph Bartoschek
  2006-06-20 13:28         ` Daniel Jacobowitz
  0 siblings, 1 reply; 8+ messages in thread
From: Christoph Bartoschek @ 2006-06-20 13:27 UTC (permalink / raw)
  To: gdb

Am Dienstag, 20. Juni 2006 15:09 schrieb Daniel Jacobowitz:
> On Tue, Jun 20, 2006 at 02:56:57PM +0200, Christoph Bartoschek wrote:
> > What are we doing?
> >
> > I am not sure what we are doing when the error occurs because
> > instrumenting the code with printf is very tedious and stepping towards
> > the error takes to long (maybe one could use a script that stepps forward
> > till the error occurs). But the error seems to occur on different places:
> > When a gzip job is forked and waited for, when threads are joined or when
> > an exception is thrown. The exception case is not deterministic and seems
> > to only occur when I use "catch throw".
>
> I didn't mean "what is the program doing", I meant "what are you doing
> with gdb".  A session transcript might be helpful.  I'm not sure what
> catch throw could have to do with this, but that might be the trigger.

Ok, here is a transcript of a session:

bartosch@eos:> /usr/bin/gdb -p 3860
GNU gdb 6.3
Copyright 2004 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain conditions.
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB.  Type "show warranty" for details.
This GDB was configured as "x86_64-suse-linux".
Attaching to process 3860
Reading symbols 
from /dfs/data/edatools/prod/nutshell/11.1/.bin-linux64/nutsh-O...done.
Using host libthread_db library "/lib64/tls/libthread_db.so.1".
Reading symbols from /lib64/libdl.so.2...done.
Loaded symbols for /lib64/libdl.so.2
Reading symbols from /lib64/tls/libpthread.so.0...done.
[Thread debugging using libthread_db enabled]
[New Thread 46912506196544 (LWP 3860)]
[New Thread 1074006368 (LWP 3876)]
Loaded symbols for /lib64/tls/libpthread.so.0
Reading symbols from /usr/lib64/libstdc++.so.5...done.
Loaded symbols for /usr/lib64/libstdc++.so.5
Reading symbols from /lib64/tls/libm.so.6...done.
Loaded symbols for /lib64/tls/libm.so.6
Reading symbols 
from /usr/local/opt/x86_64-20060502/gcc/lib64/libgcc_s.so.1...done.
Loaded symbols for /usr/local/opt/x86_64/gcc/lib64/libgcc_s.so.1
Reading symbols from /lib64/tls/libc.so.6...done.
Loaded symbols for /lib64/tls/libc.so.6
Reading symbols from /lib64/ld-linux-x86-64.so.2...done.
Loaded symbols for /lib64/ld-linux-x86-64.so.2
Reading symbols 
from /dfs/data/edatools/prod/nutshell/11.1/.dll-linux64/legosx.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/nutshell/11.1/.dll-linux64/legosx.dll
Reading symbols from /usr/X11R6/lib64/libXm.so.3...done.
Loaded symbols for /usr/X11R6/lib64/libXm.so.3
Reading symbols from /usr/X11R6/lib64/libXt.so.6...done.
Loaded symbols for /usr/X11R6/lib64/libXt.so.6
Reading symbols from /usr/X11R6/lib64/libXpm.so.4...done.
Loaded symbols for /usr/X11R6/lib64/libXpm.so.4
Reading symbols from /usr/X11R6/lib64/libXp.so.6...done.
Loaded symbols for /usr/X11R6/lib64/libXp.so.6
Reading symbols from /usr/X11R6/lib64/libXext.so.6...done.
Loaded symbols for /usr/X11R6/lib64/libXext.so.6
Reading symbols from /usr/X11R6/lib64/libXmu.so.6...done.
Loaded symbols for /usr/X11R6/lib64/libXmu.so.6
Reading symbols from /usr/X11R6/lib64/libX11.so.6...done.
Loaded symbols for /usr/X11R6/lib64/libX11.so.6
Reading symbols from /usr/X11R6/lib64/libSM.so.6...done.
Loaded symbols for /usr/X11R6/lib64/libSM.so.6
Reading symbols from /usr/X11R6/lib64/libICE.so.6...done.
Loaded symbols for /usr/X11R6/lib64/libICE.so.6
Reading symbols 
from /dfs/data/edatools/prod/nutshell/11.1/.dll-linux64/console.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/nutshell/11.1/.dll-linux64/console.dll
Reading symbols 
from /dfs/data/edatools/prod/model/11.1/.dll-linux64/comclass.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/model/11.1/.dll-linux64/comclass.dll
Reading symbols 
from /dfs/data/edatools/prod/model/11.1/.dll-linux64/idm.dll...done.
Loaded symbols for /dfs/data/edatools/prod/model/11.1/.dll-linux64/idm.dll
Reading symbols 
from /dfs/data/edatools/prod/model/11.1/.dll-linux64/pcrshapes.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/model/11.1/.dll-linux64/pcrshapes.dll
Reading symbols 
from /dfs/data/edatools/prod/model/11.1/.dll-linux64/subnet.dll...done.
Loaded symbols for /dfs/data/edatools/prod/model/11.1/.dll-linux64/subnet.dll
Reading symbols 
from /dfs/data/edatools/prod/model/11.1/.dll-linux64/idmtech.dll...done.
Loaded symbols for /dfs/data/edatools/prod/model/11.1/.dll-linux64/idmtech.dll
Reading symbols 
from /dfs/data/edatools/prod/model/11.1/.dll-linux64/idmphys.dll...done.
Loaded symbols for /dfs/data/edatools/prod/model/11.1/.dll-linux64/idmphys.dll
Reading symbols 
from /dfs/data/edatools/prod/model/11.1/.dll-linux64/path.dll...done.
Loaded symbols for /dfs/data/edatools/prod/model/11.1/.dll-linux64/path.dll
Reading symbols 
from /dfs/data/edatools/prod/model/11.1/.dll-linux64/pcr.dll...done.
Loaded symbols for /dfs/data/edatools/prod/model/11.1/.dll-linux64/pcr.dll
Reading symbols 
from /dfs/data/edatools/prod/modelutil/11.1/.dll-linux64/aim_netlist.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/modelutil/11.1/.dll-linux64/aim_netlist.dll
Reading symbols 
from /dfs/data/edatools/prod/modelutil/11.1/.dll-linux64/pcrserv.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/modelutil/11.1/.dll-linux64/pcrserv.dll
Reading symbols 
from /dfs/data/edatools/prod/modelutil/11.1/.dll-linux64/aim_views.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/modelutil/11.1/.dll-linux64/aim_views.dll
Reading symbols 
from /dfs/data/edatools/prod/modelutil/11.1/.dll-linux64/pdl_parse.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/modelutil/11.1/.dll-linux64/pdl_parse.dll
Reading symbols 
from /dfs/data/edatools/prod/modelutil/11.1/.dll-linux64/pcrphys.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/modelutil/11.1/.dll-linux64/pcrphys.dll
Reading symbols 
from /dfs/data/edatools/prod/edautils/11.1/.dll-linux64/dclcom.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/edautils/11.1/.dll-linux64/dclcom.dll
Reading symbols 
from /dfs/data/edatools/prod/edautils/11.1/.dll-linux64/icmcom.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/edautils/11.1/.dll-linux64/icmcom.dll
Reading symbols 
from /dfs/data/edatools/prod/edautils/11.1/.dll-linux64/icmvim.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/edautils/11.1/.dll-linux64/icmvim.dll
Reading symbols 
from /dfs/data/edatools/prod/ess/11.1/.dll-linux64/essrc.dll...done.
Loaded symbols for /dfs/data/edatools/prod/ess/11.1/.dll-linux64/essrc.dll
Reading symbols 
from /dfs/data/edatools/prod/ess/11.1/.dll-linux64/essuicore.dll...done.
Loaded symbols for /dfs/data/edatools/prod/ess/11.1/.dll-linux64/essuicore.dll
Reading symbols 
from /dfs/data/edatools/prod/ess/11.1/.dll-linux64/essinc.dll...done.
Loaded symbols for /dfs/data/edatools/prod/ess/11.1/.dll-linux64/essinc.dll
Reading symbols 
from /dfs/data/edatools/prod/ess/11.1/.dll-linux64/ess.dll...done.
Loaded symbols for /dfs/data/edatools/prod/ess/11.1/.dll-linux64/ess.dll
Reading symbols 
from /dfs/data/edatools/prod/wss/11.1/.dll-linux64/wss.dll...done.
Loaded symbols for /dfs/data/edatools/prod/wss/11.1/.dll-linux64/wss.dll
Reading symbols 
from /dfs/data/edatools/prod/wss/11.1/.dll-linux64/ga.dll...done.
Loaded symbols for /dfs/data/edatools/prod/wss/11.1/.dll-linux64/ga.dll
Reading symbols 
from /dfs/data/edatools/prod/idme/11.1/.dll-linux64/idme.dll...done.
Loaded symbols for /dfs/data/edatools/prod/idme/11.1/.dll-linux64/idme.dll
Reading symbols 
from /dfs/data/edatools/prod/nutshell/11.1/.dll-linux64/parmdb.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/nutshell/11.1/.dll-linux64/parmdb.dll
Reading symbols 
from /usr/X11R6/lib/X11/locale/lib64/common/xlcDef.so.2...done.
Loaded symbols for /usr/X11R6/lib/X11/locale/lib64/common/xlcDef.so.2
Reading symbols 
from /dfs/data/edatools/prod/idme/11.1/.dll-linux64/srule.dll...done.
Loaded symbols for /dfs/data/edatools/prod/idme/11.1/.dll-linux64/srule.dll
Reading symbols 
from /dfs/data/edatools/prod/tla/11.1/.dll-linux64/tla_prim.dll...done.
Loaded symbols for /dfs/data/edatools/prod/tla/11.1/.dll-linux64/tla_prim.dll
Reading symbols 
from /dfs/data/edatools/prod/tla/11.1/.dll-linux64/tla_fit.dll...done.
Loaded symbols for /dfs/data/edatools/prod/tla/11.1/.dll-linux64/tla_fit.dll
Reading symbols 
from /dfs/data/edatools/prod/tla/11.1/.dll-linux64/tla_pla.dll...done.
Loaded symbols for /dfs/data/edatools/prod/tla/11.1/.dll-linux64/tla_pla.dll
Reading symbols 
from /dfs/data/edatools/prod/tla/11.1/.dll-linux64/tla_model.dll...done.
Loaded symbols for /dfs/data/edatools/prod/tla/11.1/.dll-linux64/tla_model.dll
Reading symbols 
from /dfs/data/edatools/prod/tla/11.1/.dll-linux64/tla_match.dll...done.
Loaded symbols for /dfs/data/edatools/prod/tla/11.1/.dll-linux64/tla_match.dll
Reading symbols 
from /dfs/data/edatools/prod/tla/11.1/.dll-linux64/tla_func.dll...done.
Loaded symbols for /dfs/data/edatools/prod/tla/11.1/.dll-linux64/tla_func.dll
Reading symbols 
from /dfs/data/edatools/prod/license/11.1/.dll-linux64/license.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/license/11.1/.dll-linux64/license.dll
Reading symbols 
from /dfs/data/edatools/prod/einstimer/11.1/.dll-linux64/icmsrc.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/einstimer/11.1/.dll-linux64/icmsrc.dll
Reading symbols 
from /dfs/data/edatools/prod/rice/11.1/.dll-linux64/rice.dll...done.
Loaded symbols for /dfs/data/edatools/prod/rice/11.1/.dll-linux64/rice.dll
Reading symbols 
from /dfs/data/edatools/prod/einstimer/11.1/.dll-linux64/itvpd.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/einstimer/11.1/.dll-linux64/itvpd.dll
Reading symbols 
from /dfs/data/edatools/prod/einstimer/11.1/.dll-linux64/etcore.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/einstimer/11.1/.dll-linux64/etcore.dll
Reading symbols 
from /dfs/data/edatools/prod/vss/11.1/.dll-linux64/vss.dll...done.
Loaded symbols for /dfs/data/edatools/prod/vss/11.1/.dll-linux64/vss.dll
Reading symbols 
from /dfs/data/edatools/prod/einstimer/11.1/.dll-linux64/etproc.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/einstimer/11.1/.dll-linux64/etproc.dll
Reading symbols 
from /dfs/data/edatools/prod/einstimer/11.1/.dll-linux64/einsengine.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/einstimer/11.1/.dll-linux64/einsengine.dll
Reading symbols 
from /dfs/data/edatools/prod/einstimer/11.1/.dll-linux64/itvui.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/einstimer/11.1/.dll-linux64/itvui.dll
Reading symbols 
from /dfs/data/edatools/prod/ess/11.1/.dll-linux64/essutils.dll...done.
Loaded symbols for /dfs/data/edatools/prod/ess/11.1/.dll-linux64/essutils.dll
Reading symbols 
from /dfs/data/edatools/prod/einstimer/11.1/.dll-linux64/einstimer.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/einstimer/11.1/.dll-linux64/einstimer.dll
Reading symbols 
from /dfs/data/edatools/prod/tla/11.1/.dll-linux64/tla_discrete.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/tla/11.1/.dll-linux64/tla_discrete.dll
Reading symbols 
from /dfs/data/edatools/prod/tla/11.1/.dll-linux64/tla_continuous.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/tla/11.1/.dll-linux64/tla_continuous.dll
Reading symbols 
from /dfs/data/edatools/prod/tla/11.1/.dll-linux64/tla_io.dll...done.
Loaded symbols for /dfs/data/edatools/prod/tla/11.1/.dll-linux64/tla_io.dll
Reading symbols 
from /dfs/data/edatools/prod/tla/11.1/.dll-linux64/tla.dll...done.
Loaded symbols for /dfs/data/edatools/prod/tla/11.1/.dll-linux64/tla.dll
Reading symbols 
from /dfs/data/edatools/prod/ics/11.1/.dll-linux64/icslaunch.dll...done.
Loaded symbols for /dfs/data/edatools/prod/ics/11.1/.dll-linux64/icslaunch.dll
Reading symbols 
from /dfs/data/edatools/prod/hdp/11.1/.dll-linux64/cb_ui_serv.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/hdp/11.1/.dll-linux64/cb_ui_serv.dll
Reading symbols 
from /dfs/data/edatools/prod/modelutil/11.1/.dll-linux64/idmppi.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/modelutil/11.1/.dll-linux64/idmppi.dll
Reading symbols 
from /dfs/data/edatools/prod/modelutil/11.1/.dll-linux64/pcrtech.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/modelutil/11.1/.dll-linux64/pcrtech.dll
Reading symbols 
from /dfs/data/edatools/prod/modelutil/11.1/.dll-linux64/niagara.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/modelutil/11.1/.dll-linux64/niagara.dll
Reading symbols 
from /dfs/data/edatools/prod/modelutil/11.1/.dll-linux64/enciopad.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/modelutil/11.1/.dll-linux64/enciopad.dll
Reading symbols 
from /dfs/data/edatools/prod/modelio/11.1/.dll-linux64/dnabase.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/modelio/11.1/.dll-linux64/dnabase.dll
Reading symbols 
from /dfs/data/edatools/prod/modelio/11.1/.dll-linux64/dna_env.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/modelio/11.1/.dll-linux64/dna_env.dll
Reading symbols 
from /dfs/data/edatools/prod/modelio/11.1/.dll-linux64/vim_env.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/modelio/11.1/.dll-linux64/vim_env.dll
Reading symbols 
from /dfs/data/edatools/prod/modelutil/11.1/.dll-linux64/dsl.dll...done.
Loaded symbols for /dfs/data/edatools/prod/modelutil/11.1/.dll-linux64/dsl.dll
Reading symbols 
from /dfs/data/edatools/prod/wss/11.1/.dll-linux64/wss_steiner.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/wss/11.1/.dll-linux64/wss_steiner.dll
Reading symbols 
from /dfs/data/edatools/prod/hdp/11.1/.dll-linux64/model_serv.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/hdp/11.1/.dll-linux64/model_serv.dll
Reading symbols 
from /dfs/data/edatools/prod/hdp/11.1/.dll-linux64/cb_srule.dll...done.
Loaded symbols for /dfs/data/edatools/prod/hdp/11.1/.dll-linux64/cb_srule.dll
Reading symbols 
from /dfs/data/edatools/prod/hdp/11.1/.dll-linux64/chipbench_serv.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/hdp/11.1/.dll-linux64/chipbench_serv.dll
Reading symbols 
from /dfs/data/edatools/prod/dcutils/11.1/.dll-linux64/cowr.dll...done.
Loaded symbols for /dfs/data/edatools/prod/dcutils/11.1/.dll-linux64/cowr.dll
Reading symbols 
from /dfs/data/edatools/prod/dcutils/11.1/.dll-linux64/cgwr.dll...done.
Loaded symbols for /dfs/data/edatools/prod/dcutils/11.1/.dll-linux64/cgwr.dll
Reading symbols 
from /dfs/data/edatools/prod/hdp/11.1/.dll-linux64/cb_utils.dll...done.
Loaded symbols for /dfs/data/edatools/prod/hdp/11.1/.dll-linux64/cb_utils.dll
Reading symbols 
from /dfs/data/edatools/prod/hdp/11.1/.dll-linux64/cb_model_ui.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/hdp/11.1/.dll-linux64/cb_model_ui.dll
Reading symbols 
from /dfs/data/edatools/prod/cplace/11.1/.dll-linux64/cplace.dll...done.
Loaded symbols for /dfs/data/edatools/prod/cplace/11.1/.dll-linux64/cplace.dll
Reading symbols 
from /dfs/data/edatools/prod/modelutil/11.1/.dll-linux64/vc_idm.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/modelutil/11.1/.dll-linux64/vc_idm.dll
Reading symbols 
from /dfs/data/edatools/prod/vcplace/11.1/.dll-linux64/vcplace.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/vcplace/11.1/.dll-linux64/vcplace.dll
Reading symbols 
from /dfs/data/edatools/prod/hdp/11.1/.dll-linux64/cb_cplace.dll...done.
Loaded symbols for /dfs/data/edatools/prod/hdp/11.1/.dll-linux64/cb_cplace.dll
Reading symbols 
from /dfs/data/edatools/prod/hdp/11.1/.dll-linux64/cb_absmgr.dll...done.
Loaded symbols for /dfs/data/edatools/prod/hdp/11.1/.dll-linux64/cb_absmgr.dll
Reading symbols 
from /dfs/data/edatools/prod/iospec/11.1/.dll-linux64/iospec.dll...done.
Loaded symbols for /dfs/data/edatools/prod/iospec/11.1/.dll-linux64/iospec.dll
Reading symbols 
from /dfs/data/edatools/prod/hdp/11.1/.dll-linux64/cb_iosp_parser.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/hdp/11.1/.dll-linux64/cb_iosp_parser.dll
Reading symbols 
from /dfs/data/edatools/prod/hdp/11.1/.dll-linux64/cb_floorplan.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/hdp/11.1/.dll-linux64/cb_floorplan.dll
Reading symbols 
from /dfs/data/edatools/prod/hdp/11.1/.dll-linux64/cb_cplace_ui.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/hdp/11.1/.dll-linux64/cb_cplace_ui.dll
Reading symbols 
from /dfs/data/edatools/prod/einstimer/11.1/.dll-linux64/itvabs.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/einstimer/11.1/.dll-linux64/itvabs.dll
Reading symbols 
from /dfs/data/edatools/prod/einstimer/11.1/.dll-linux64/itvcdc.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/einstimer/11.1/.dll-linux64/itvcdc.dll
Reading symbols 
from /dfs/data/edatools/ptn/linux24_amd64/tk15.1.3_linux24_amd64/dcl/4.4/lib-64/libdcm+.so...done.
Loaded symbols 
for /fs/data/gna/tools/next_commonless/edatools/tk15.1.3_linux24_amd64/dcl/4.4/lib-64/libdcm+.so
Reading symbols 
from /dfs/data/edatools/prod/einstimer/11.1/.dll-linux64/etdb.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/einstimer/11.1/.dll-linux64/etdb.dll
Reading symbols 
from /dfs/data/edatools/prod/einstimer/11.1/.dll-linux64/itvrep.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/einstimer/11.1/.dll-linux64/itvrep.dll
Reading symbols 
from /dfs/data/edatools/prod/ess/11.1/.dll-linux64/essrice.dll...done.
Loaded symbols for /dfs/data/edatools/prod/ess/11.1/.dll-linux64/essrice.dll
Reading symbols 
from /dfs/data/edatools/prod/ess/11.1/.dll-linux64/esselmore.dll...done.
Loaded symbols for /dfs/data/edatools/prod/ess/11.1/.dll-linux64/esselmore.dll
Reading symbols 
from /dfs/data/edatools/prod/hdp/11.1/.dll-linux64/cb_timing.dll...done.
Loaded symbols for /dfs/data/edatools/prod/hdp/11.1/.dll-linux64/cb_timing.dll
Reading symbols 
from /dfs/data/edatools/prod/hdp/11.1/.dll-linux64/cb_shrouter.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/hdp/11.1/.dll-linux64/cb_shrouter.dll
Reading symbols 
from /dfs/data/edatools/prod/hdp/11.1/.dll-linux64/cb_scorpion.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/hdp/11.1/.dll-linux64/cb_scorpion.dll
Reading symbols 
from /dfs/data/edatools/prod/hdp/11.1/.dll-linux64/cb_pbrouter.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/hdp/11.1/.dll-linux64/cb_pbrouter.dll
Reading symbols 
from /dfs/data/edatools/prod/hdp/11.1/.dll-linux64/cb_hierarchy.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/hdp/11.1/.dll-linux64/cb_hierarchy.dll
Reading symbols 
from /dfs/data/edatools/prod/edags/11.1/.dll-linux64/edags.dll...done.
Loaded symbols for /dfs/data/edatools/prod/edags/11.1/.dll-linux64/edags.dll
Reading symbols from /usr/X11R6/lib64/libXi.so.6...done.
Loaded symbols for /usr/X11R6/lib64/libXi.so.6
Reading symbols 
from /dfs/data/edatools/prod/ciwtk/11.1/.dll-linux64/ciwtk.dll...done.
Loaded symbols for /dfs/data/edatools/prod/ciwtk/11.1/.dll-linux64/ciwtk.dll
Reading symbols from /usr/X11R6/lib64/libXaw.so.7...done.
Loaded symbols for /usr/X11R6/lib64/libXaw.so.7
Reading symbols 
from /dfs/data/edatools/prod/ciwipc/11.1/.dll-linux64/ciwipc.dll...done.
Loaded symbols for /dfs/data/edatools/prod/ciwipc/11.1/.dll-linux64/ciwipc.dll
Reading symbols 
from /dfs/data/edatools/prod/hdp/11.1/.dll-linux64/cb_imgpkg.dll...done.
Loaded symbols for /dfs/data/edatools/prod/hdp/11.1/.dll-linux64/cb_imgpkg.dll
Reading symbols 
from /dfs/data/edatools/prod/modelutil/11.1/.dll-linux64/congmap.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/modelutil/11.1/.dll-linux64/congmap.dll
Reading symbols 
from /dfs/data/edatools/prod/hdp/11.1/.dll-linux64/cb_apps.dll...done.
Loaded symbols for /dfs/data/edatools/prod/hdp/11.1/.dll-linux64/cb_apps.dll
Reading symbols 
from /dfs/data/edatools/prod/buffopt/11.1/.dll-linux64/buffoptups.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/buffopt/11.1/.dll-linux64/buffoptups.dll
Reading symbols 
from /dfs/data/edatools/prod/hdp/11.1/.dll-linux64/cb_timeopt.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/hdp/11.1/.dll-linux64/cb_timeopt.dll
Reading symbols 
from /dfs/data/edatools/prod/hdp/11.1/.dll-linux64/cb_targetgen.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/hdp/11.1/.dll-linux64/cb_targetgen.dll
Reading symbols 
from /dfs/data/edatools/prod/hdp/11.1/.dll-linux64/cb_clkopt.dll...done.
Loaded symbols for /dfs/data/edatools/prod/hdp/11.1/.dll-linux64/cb_clkopt.dll
Reading symbols 
from /dfs/data/edatools/prod/hdp/11.1/.dll-linux64/chipbench_ui.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/hdp/11.1/.dll-linux64/chipbench_ui.dll
Reading symbols 
from /dfs/data/edatools/prod/sss/11.1/.dll-linux64/bdz_util.dll...done.
Loaded symbols for /dfs/data/edatools/prod/sss/11.1/.dll-linux64/bdz_util.dll
Reading symbols 
from /dfs/data/edatools/prod/sss/11.1/.dll-linux64/bdz_mangle.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/sss/11.1/.dll-linux64/bdz_mangle.dll
Reading symbols 
from /dfs/data/edatools/prod/sss/11.1/.dll-linux64/bdz_srule.dll...done.
Loaded symbols for /dfs/data/edatools/prod/sss/11.1/.dll-linux64/bdz_srule.dll
Reading symbols 
from /dfs/data/edatools/prod/sss/11.1/.dll-linux64/bdz_drivers.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/sss/11.1/.dll-linux64/bdz_drivers.dll
Reading symbols 
from /dfs/data/edatools/prod/sss/11.1/.dll-linux64/bdz_laction.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/sss/11.1/.dll-linux64/bdz_laction.dll
Reading symbols 
from /dfs/data/edatools/prod/sss/11.1/.dll-linux64/sss.dll...done.
Loaded symbols for /dfs/data/edatools/prod/sss/11.1/.dll-linux64/sss.dll
Reading symbols 
from /dfs/data/edatools/prod/sss/11.1/.dll-linux64/booledozer.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/sss/11.1/.dll-linux64/booledozer.dll
Reading symbols 
from /dfs/data/edatools/prod/tcl/11.1/.dll-linux64/tclx.dll...done.
Loaded symbols for /dfs/data/edatools/prod/tcl/11.1/.dll-linux64/tclx.dll
Reading symbols 
from /dfs/data/edatools/prod/sss/11.1/.dll-linux64/bdz_sim.dll...done.
Loaded symbols for /dfs/data/edatools/prod/sss/11.1/.dll-linux64/bdz_sim.dll
Reading symbols 
from /dfs/data/edatools/prod/sss/11.1/.dll-linux64/bdz_pattern.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/sss/11.1/.dll-linux64/bdz_pattern.dll
Reading symbols 
from /dfs/data/edatools/prod/einstimer/11.1/.dll-linux64/itvpower.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/einstimer/11.1/.dll-linux64/itvpower.dll
Reading symbols 
from /dfs/data/edatools/prod/waveform/11.1/.dll-linux64/WvWaves.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/waveform/11.1/.dll-linux64/WvWaves.dll
Reading symbols 
from /dfs/data/edatools/prod/pss/11.1/.dll-linux64/pssutils.dll...done.
Loaded symbols for /dfs/data/edatools/prod/pss/11.1/.dll-linux64/pssutils.dll
Reading symbols 
from /dfs/data/edatools/prod/pss/11.1/.dll-linux64/pssdata.dll...done.
Loaded symbols for /dfs/data/edatools/prod/pss/11.1/.dll-linux64/pssdata.dll
Reading symbols 
from /dfs/data/edatools/prod/pss/11.1/.dll-linux64/pssdpcm.dll...done.
Loaded symbols for /dfs/data/edatools/prod/pss/11.1/.dll-linux64/pssdpcm.dll
Reading symbols 
from /dfs/data/edatools/prod/pss/11.1/.dll-linux64/pssapi.dll...done.
Loaded symbols for /dfs/data/edatools/prod/pss/11.1/.dll-linux64/pssapi.dll
Reading symbols 
from /dfs/data/edatools/prod/ete/11.1/.dll-linux64/ete.dll...done.
Loaded symbols for /dfs/data/edatools/prod/ete/11.1/.dll-linux64/ete.dll
Reading symbols 
from /dfs/data/edatools/prod/sss/11.1/.dll-linux64/bdz_time.dll...done.
Loaded symbols for /dfs/data/edatools/prod/sss/11.1/.dll-linux64/bdz_time.dll
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/DCMinterface_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/DCMinterface_LIN64OPT
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/bccu11_LIN64OPT/bccu11_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/bccu11_LIN64OPT/bccu11_LIN64OPT
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/gacu11_LIN64OPT/gacu11_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/gacu11_LIN64OPT/gacu11_LIN64OPT
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/sccu11_LIN64OPT/sccu11_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/sccu11_LIN64OPT/sccu11_LIN64OPT
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/sclatchcu11_LIN64OPT/sclatchcu11_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/sclatchcu11_LIN64OPT/sclatchcu11_LIN64OPT
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/iocu11_LIN64OPT/iocu11_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/iocu11_LIN64OPT/iocu11_LIN64OPT
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/iopmcu11_LIN64OPT/iopmcu11_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/iopmcu11_LIN64OPT/iopmcu11_LIN64OPT
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/iolvtcu11_LIN64OPT/iolvtcu11_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/iolvtcu11_LIN64OPT/iolvtcu11_LIN64OPT
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/iopmlvtcu11_LIN64OPT/iopmlvtcu11_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/iopmlvtcu11_LIN64OPT/iopmlvtcu11_LIN64OPT
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/fatwiocu11_LIN64OPT/fatwiocu11_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/fatwiocu11_LIN64OPT/fatwiocu11_LIN64OPT
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/pllcu11_LIN64OPT/pllcu11_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/pllcu11_LIN64OPT/pllcu11_LIN64OPT
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/racu11_LIN64OPT/racu11_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/racu11_LIN64OPT/racu11_LIN64OPT
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/romhdcu11_LIN64OPT/romhdcu11_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/romhdcu11_LIN64OPT/romhdcu11_LIN64OPT
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/romldcu11_LIN64OPT/romldcu11_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/romldcu11_LIN64OPT/romldcu11_LIN64OPT
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/sram1dncu11_LIN64OPT/sram1dncu11_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/sram1dncu11_LIN64OPT/sram1dncu11_LIN64OPT
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/sram1pncu11_LIN64OPT/sram1pncu11_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/sram1pncu11_LIN64OPT/sram1pncu11_LIN64OPT
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/sram1drcu11_LIN64OPT/sram1drcu11_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/sram1drcu11_LIN64OPT/sram1drcu11_LIN64OPT
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/sram1prcu11_LIN64OPT/sram1prcu11_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/sram1prcu11_LIN64OPT/sram1prcu11_LIN64OPT
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/sram2dcu11_LIN64OPT/sram2dcu11_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/sram2dcu11_LIN64OPT/sram2dcu11_LIN64OPT
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/sram2drcu11_LIN64OPT/sram2drcu11_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/sram2drcu11_LIN64OPT/sram2drcu11_LIN64OPT
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/sram2hrcu11_LIN64OPT/sram2hrcu11_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/sram2hrcu11_LIN64OPT/sram2hrcu11_LIN64OPT
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/sram2hncu11_LIN64OPT/sram2hncu11_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/sram2hncu11_LIN64OPT/sram2hncu11_LIN64OPT
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/sram4gcu11_LIN64OPT/sram4gcu11_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/sram4gcu11_LIN64OPT/sram4gcu11_LIN64OPT
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/sram4grcu11_LIN64OPT/sram4grcu11_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/sram4grcu11_LIN64OPT/sram4grcu11_LIN64OPT
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/sram4dncu11_LIN64OPT/sram4dncu11_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/sram4dncu11_LIN64OPT/sram4dncu11_LIN64OPT
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/sram4drcu11_LIN64OPT/sram4drcu11_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/sram4drcu11_LIN64OPT/sram4drcu11_LIN64OPT
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/bist1ncu11_LIN64OPT/bist1ncu11_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/bist1ncu11_LIN64OPT/bist1ncu11_LIN64OPT
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/bist1rs1cu11_LIN64OPT/bist1rs1cu11_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/bist1rs1cu11_LIN64OPT/bist1rs1cu11_LIN64OPT
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/bist1rs2cu11_LIN64OPT/bist1rs2cu11_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/bist1rs2cu11_LIN64OPT/bist1rs2cu11_LIN64OPT
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/bist2dcu11_LIN64OPT/bist2dcu11_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/bist2dcu11_LIN64OPT/bist2dcu11_LIN64OPT
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/bist4gcu11_LIN64OPT/bist4gcu11_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/bist4gcu11_LIN64OPT/bist4gcu11_LIN64OPT
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/bist4grcu11_LIN64OPT/bist4grcu11_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/bist4grcu11_LIN64OPT/bist4grcu11_LIN64OPT
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/bist4dncu11_LIN64OPT/bist4dncu11_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/bist4dncu11_LIN64OPT/bist4dncu11_LIN64OPT
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/bist4drs1cu11_LIN64OPT/bist4drs1cu11_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/bist4drs1cu11_LIN64OPT/bist4drs1cu11_LIN64OPT
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/bist4drs2cu11_LIN64OPT/bist4drs2cu11_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/bist4drs2cu11_LIN64OPT/bist4drs2cu11_LIN64OPT
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/bistctncu11_LIN64OPT/bistctncu11_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/bistctncu11_LIN64OPT/bistctncu11_LIN64OPT
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/bistctrs1cu11_LIN64OPT/bistctrs1cu11_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/bistctrs1cu11_LIN64OPT/bistctrs1cu11_LIN64OPT
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/bistctrs2cu11_LIN64OPT/bistctrs2cu11_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/bistctrs2cu11_LIN64OPT/bistctrs2cu11_LIN64OPT
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/ecidcu11_LIN64OPT/ecidcu11_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/ecidcu11_LIN64OPT/ecidcu11_LIN64OPT
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/fusescu11_LIN64OPT/fusescu11_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/fusescu11_LIN64OPT/fusescu11_LIN64OPT
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/camfncu11_LIN64OPT/camfncu11_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/camfncu11_LIN64OPT/camfncu11_LIN64OPT
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/camfrcu11_LIN64OPT/camfrcu11_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/camfrcu11_LIN64OPT/camfrcu11_LIN64OPT
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/camtncu11_LIN64OPT/camtncu11_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/camtncu11_LIN64OPT/camtncu11_LIN64OPT
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/camtrcu11_LIN64OPT/camtrcu11_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/camtrcu11_LIN64OPT/camtrcu11_LIN64OPT
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/camxncu11_LIN64OPT/camxncu11_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/camxncu11_LIN64OPT/camxncu11_LIN64OPT
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/camxrcu11_LIN64OPT/camxrcu11_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/camxrcu11_LIN64OPT/camxrcu11_LIN64OPT
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/bist1rss1cu11_LIN64OPT/bist1rss1cu11_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/bist1rss1cu11_LIN64OPT/bist1rss1cu11_LIN64OPT
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/bist1rss2cu11_LIN64OPT/bist1rss2cu11_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/bist1rss2cu11_LIN64OPT/bist1rss2cu11_LIN64OPT
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/bist4drss1cu11_LIN64OPT/bist4drss1cu11_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/bist4drss1cu11_LIN64OPT/bist4drss1cu11_LIN64OPT
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/bist4drss2cu11_LIN64OPT/bist4drss2cu11_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/bist4drss2cu11_LIN64OPT/bist4drss2cu11_LIN64OPT
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/bist4grscu11_LIN64OPT/bist4grscu11_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/bist4grscu11_LIN64OPT/bist4grscu11_LIN64OPT
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/farr1rss1cu11_LIN64OPT/farr1rss1cu11_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/farr1rss1cu11_LIN64OPT/farr1rss1cu11_LIN64OPT
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/farr1rss2cu11_LIN64OPT/farr1rss2cu11_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/farr1rss2cu11_LIN64OPT/farr1rss2cu11_LIN64OPT
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/farr4drss1cu11_LIN64OPT/farr4drss1cu11_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/farr4drss1cu11_LIN64OPT/farr4drss1cu11_LIN64OPT
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/farr4drss2cu11_LIN64OPT/farr4drss2cu11_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/farr4drss2cu11_LIN64OPT/farr4drss2cu11_LIN64OPT
Reading symbols 
from /dfs/data/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/farr4grscu11_LIN64OPT/farr4grscu11_LIN64OPT...done.
Loaded symbols 
for /fs/data/gna/scripts/next_commonless/asiclibs/ibm_cu11/v13.0fix/base/ndr/LIN64OPT/farr4grscu11_LIN64OPT/farr4grscu11_LIN64OPT
Reading symbols 
from /dfs/data/edatools/prod/nutshell/11.1/.dll-linux64/nutgui.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/nutshell/11.1/.dll-linux64/nutgui.dll
Reading symbols from /usr/X11R6/lib64/libXcursor.so.1...done.
Loaded symbols for /usr/X11R6/lib64/libXcursor.so.1
Reading symbols from /usr/X11R6/lib64/libXrender.so.1...done.
Loaded symbols for /usr/X11R6/lib64/libXrender.so.1
Reading symbols from /usr/X11R6/lib/X11/locale/lib64/common/ximcp.so.2...done.
Loaded symbols for /usr/X11R6/lib/X11/locale/lib64/common/ximcp.so.2
Reading symbols 
from /dfs/data/edatools/prod/model/11.1/.dll-linux64/igui.dll...done.
Loaded symbols for /dfs/data/edatools/prod/model/11.1/.dll-linux64/igui.dll
Reading symbols 
from /dfs/data/edatools/prod/ics/11.1/.dll-linux64/icsgc.dll...done.
Loaded symbols for /dfs/data/edatools/prod/ics/11.1/.dll-linux64/icsgc.dll
Reading symbols 
from /dfs/data/edatools/prod/ics/11.1/.dll-linux64/icsviewer.dll...done.
Loaded symbols for /dfs/data/edatools/prod/ics/11.1/.dll-linux64/icsviewer.dll
Reading symbols 
from /dfs/data/edatools/prod/ics/11.1/.dll-linux64/icstime_date.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/ics/11.1/.dll-linux64/icstime_date.dll
Reading symbols 
from /dfs/data/edatools/prod/ics/11.1/.dll-linux64/icsmsgsvc.dll...done.
Loaded symbols for /dfs/data/edatools/prod/ics/11.1/.dll-linux64/icsmsgsvc.dll
Reading symbols 
from /dfs/data/edatools/prod/ics/11.1/.dll-linux64/icsutils.dll...done.
Loaded symbols for /dfs/data/edatools/prod/ics/11.1/.dll-linux64/icsutils.dll
Reading symbols 
from /dfs/data/edatools/prod/ics/11.1/.dll-linux64/icsfileops.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/ics/11.1/.dll-linux64/icsfileops.dll
Reading symbols 
from /dfs/data/edatools/prod/hdp/11.1/.dll-linux64/cb_gui_serv.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/hdp/11.1/.dll-linux64/cb_gui_serv.dll
Reading symbols 
from /dfs/data/edatools/prod/hdp/11.1/.dll-linux64/cbg_ui.dll...done.
Loaded symbols for /dfs/data/edatools/prod/hdp/11.1/.dll-linux64/cbg_ui.dll
Reading symbols 
from /dfs/data/edatools/prod/hdp/11.1/.dll-linux64/chipbench_gui.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/hdp/11.1/.dll-linux64/chipbench_gui.dll
Reading symbols from /lib64/libnss_files.so.2...done.
Loaded symbols for /lib64/libnss_files.so.2
Reading symbols from /lib64/libnss_dns.so.2...done.
Loaded symbols for /lib64/libnss_dns.so.2
Reading symbols from /lib64/libresolv.so.2...done.
Loaded symbols for /lib64/libresolv.so.2
Reading symbols 
from /dfs/data/edatools/prod/dotlib/11.1/.dll-linux64/dotlib.dll...done.
Loaded symbols for /dfs/data/edatools/prod/dotlib/11.1/.dll-linux64/dotlib.dll
Reading symbols from /lib64/libz.so.1...done.
Loaded symbols for /lib64/libz.so.1
Reading symbols 
from /dfs/data/edatools/prod/einstimer/11.1/.dll-linux64/etlib.dll...done.
Loaded symbols 
for /dfs/data/edatools/prod/einstimer/11.1/.dll-linux64/etlib.dll
0x00002aaaab2d1246 in __select_nocancel () from /lib64/tls/libc.so.6
(gdb) c
Continuing.

Program received signal SIGUSR2, User defined signal 2.
[Switching to Thread 46912506196544 (LWP 3860)]
0x00002aaaaacd1189 in raise () from /lib64/tls/libpthread.so.0
(gdb)
Continuing.

Program received signal SIGUSR2, User defined signal 2.
0x00002aaaaacd1189 in raise () from /lib64/tls/libpthread.so.0
(gdb)
Continuing.

Program received signal SIGUSR2, User defined signal 2.
0x00002aaaaacd1189 in raise () from /lib64/tls/libpthread.so.0
(gdb)
Continuing.

Program received signal SIGUSR2, User defined signal 2.
0x00002aaaaacd1189 in raise () from /lib64/tls/libpthread.so.0
(gdb)
Continuing.

Program received signal SIGUSR2, User defined signal 2.
0x00002aaaaacd1189 in raise () from /lib64/tls/libpthread.so.0
(gdb)
Continuing.

Program received signal SIGUSR2, User defined signal 2.
0x00002aaaaacd1189 in raise () from /lib64/tls/libpthread.so.0
(gdb)
Continuing.

Program received signal SIGUSR2, User defined signal 2.
0x00002aaaaacd1189 in raise () from /lib64/tls/libpthread.so.0
(gdb)
Continuing.

Program received signal SIGUSR2, User defined signal 2.
0x00002aaaaacd1189 in raise () from /lib64/tls/libpthread.so.0
(gdb)
Continuing.
[New Thread 1342445920 (LWP 3980)]
[Thread 1342445920 (LWP 3980) exited]
[New Thread 1342445920 (LWP 3981)]
[Thread 1342445920 (LWP 3981) exited]
[New Thread 1141119328 (LWP 3982)]
[Thread 1141119328 (LWP 3982) exited]
Cannot fetch general-purpose registers for thread 1141119328: generic error
(gdb)        

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

* Re: Cannot fetch general-purpose registers for thread 1342445920: generic error
  2006-06-20 13:27       ` Christoph Bartoschek
@ 2006-06-20 13:28         ` Daniel Jacobowitz
  2006-06-20 16:21           ` Christoph Bartoschek
  0 siblings, 1 reply; 8+ messages in thread
From: Daniel Jacobowitz @ 2006-06-20 13:28 UTC (permalink / raw)
  To: Christoph Bartoschek; +Cc: gdb

On Tue, Jun 20, 2006 at 03:24:44PM +0200, Christoph Bartoschek wrote:
> Ok, here is a transcript of a session:

So: attach to a running process, continue for a while, then when it
creates threads gdb breaks.

> Program received signal SIGUSR2, User defined signal 2.
> 0x00002aaaaacd1189 in raise () from /lib64/tls/libpthread.so.0
> (gdb)
> Continuing.
> [New Thread 1342445920 (LWP 3980)]
> [Thread 1342445920 (LWP 3980) exited]
> [New Thread 1342445920 (LWP 3981)]
> [Thread 1342445920 (LWP 3981) exited]
> [New Thread 1141119328 (LWP 3982)]
> [Thread 1141119328 (LWP 3982) exited]  
> Cannot fetch general-purpose registers for thread 1141119328: generic error
> (gdb)        

That thread's already "exited".  Hmm.  Is your application continuing
to receive asynchronous signals at this point?  i.e. is it possible
that we stopped while the thread was exiting, because of a SIGUSR2?

-- 
Daniel Jacobowitz
CodeSourcery

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

* Re: Cannot fetch general-purpose registers for thread 1342445920: generic error
  2006-06-20 13:28         ` Daniel Jacobowitz
@ 2006-06-20 16:21           ` Christoph Bartoschek
       [not found]             ` <20060620135351.GA9853@host0.dyn.jankratochvil.net>
  0 siblings, 1 reply; 8+ messages in thread
From: Christoph Bartoschek @ 2006-06-20 16:21 UTC (permalink / raw)
  To: gdb

Am Dienstag, 20. Juni 2006 15:27 schrieb Daniel Jacobowitz:
> On Tue, Jun 20, 2006 at 03:24:44PM +0200, Christoph Bartoschek wrote:
> > Ok, here is a transcript of a session:
>
> So: attach to a running process, continue for a while, then when it
> creates threads gdb breaks.
>
> > Program received signal SIGUSR2, User defined signal 2.
> > 0x00002aaaaacd1189 in raise () from /lib64/tls/libpthread.so.0
> > (gdb)
> > Continuing.
> > [New Thread 1342445920 (LWP 3980)]
> > [Thread 1342445920 (LWP 3980) exited]
> > [New Thread 1342445920 (LWP 3981)]
> > [Thread 1342445920 (LWP 3981) exited]
> > [New Thread 1141119328 (LWP 3982)]
> > [Thread 1141119328 (LWP 3982) exited]
> > Cannot fetch general-purpose registers for thread 1141119328: generic
> > error (gdb)
>
> That thread's already "exited".  Hmm.  Is your application continuing
> to receive asynchronous signals at this point?  i.e. is it possible
> that we stopped while the thread was exiting, because of a SIGUSR2?

The SIGUSR2 are only emitted when a new .dll is loaded to give the user the 
opportunity to set breakpoints. However when the new threads are starting 
loading of libraries has finished and no new SIGUSR2 are generated anymore. 
Additionally the application does not start any child here such that no 
SIGCHLD is possible.

Normally I would say that no asynchronous signals are sent to the application 
after the last SIGUSR2. 

BTW, thread 1141119328 has been finished after an exception has been caught in 
the function given to pthread_create. Normally this should be no problem.

Christoph Bartoschek

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

* Re: [filtered] Re: Cannot fetch general-purpose registers for thread 1342445920: generic error
       [not found]             ` <20060620135351.GA9853@host0.dyn.jankratochvil.net>
@ 2006-06-20 16:27               ` Christoph Bartoschek
  0 siblings, 0 replies; 8+ messages in thread
From: Christoph Bartoschek @ 2006-06-20 16:27 UTC (permalink / raw)
  To: gdb, Jan Kratochvil

Am Dienstag, 20. Juni 2006 15:53 schrieben Sie:
> Hi,
>
> this looks as a problem I recently fixed (for CVS version of gdb),
> please see the attached mail/patch.
>
> (it will NOT exit the thread as long as some events may occur there)

Thanks,

I applied your patch to gdb 6.4 and do not see the error again.

Christoph

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

end of thread, other threads:[~2006-06-20 16:21 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-06-19 17:35 Cannot fetch general-purpose registers for thread 1342445920: generic error Christoph Bartoschek
2006-06-20 12:33 ` Daniel Jacobowitz
2006-06-20 13:00   ` Christoph Bartoschek
2006-06-20 13:20     ` Daniel Jacobowitz
2006-06-20 13:27       ` Christoph Bartoschek
2006-06-20 13:28         ` Daniel Jacobowitz
2006-06-20 16:21           ` Christoph Bartoschek
     [not found]             ` <20060620135351.GA9853@host0.dyn.jankratochvil.net>
2006-06-20 16:27               ` [filtered] " Christoph Bartoschek

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).