niXforums Forum Index
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   PreferencesPreferences   Log in to check your private messagesLog in to check your private messages   Log inLog in 
·  nixdoc.net ·  man pages ·  Linux HOWTOs ·  FreeBSD Tips ·  Forums
navigation Forum index » *nix » Tru64
Analysing core files
Post new topic   Reply to topic Page 1 of 1 [5 Posts] View previous topic :: View next topic
Author Message
mehaboob@gmail.com
*nix forums beginner


Joined: 02 May 2006
Posts: 39

PostPosted: Wed Jun 21, 2006 1:08 pm    Post subject: Analysing core files Reply with quote

Hi,

I have a core file generated by an application on Tru64 machine.I have
some tool which generates the output as below.But from here am not sure
how to proceed further or what to look for....Any help would be deeply
appreciated.

And also am not sure what is meant by signal ILL?
############################################################
Thread 4 terminated at PC 0x3ffffe1c28c by signal ILL
show thread
Thread Name State Substate Policy
Pri
------ ------------------------- --------------- -----------
------------ ---
Quote:
* 4 <anonymous> running V5 SCHED_OTHER 19

Stack trace for thread 4
Quote:
0 0x3ffffe1c28c in apps/libtfc_fmk.so
#1 0x3ffbe3cf910 in DoReleaseAllLocks(...) in apps/libtfc_fmk.so

#2 0x3ffbe3cf66c in ReleaseAllLocks(...) in apps/libtfc_fmk.so
#3 0x3ffbe3d23a0 in Execute(...) in apps/libtfc_fmk.so
#4 0x3ffbda8d230 in Bootstrap(...) in apps/libtfc_wp.so
#5 0x300000d8900 in UnknownProcedure3FromFile127(...) in
apps/libmcc_exec.so
#6 0x3ff805cf538 in __thdBase(...) in apps/libpthread.so

############################################################

Regards,
Mehaboob
Back to top
Wim Cossement
*nix forums Guru Wannabe


Joined: 24 Feb 2005
Posts: 173

PostPosted: Wed Jun 21, 2006 2:33 pm    Post subject: Re: Analysing core files Reply with quote

mehaboob@gmail.com wrote:
Quote:
Hi,

I have a core file generated by an application on Tru64 machine.I have
some tool which generates the output as below.But from here am not sure
how to proceed further or what to look for....Any help would be deeply
appreciated.

And also am not sure what is meant by signal ILL?
############################################################
Thread 4 terminated at PC 0x3ffffe1c28c by signal ILL
show thread
Thread Name State Substate Policy
Pri
------ ------------------------- --------------- -----------
------------ ---
* 4 <anonymous> running V5 SCHED_OTHER 19

Stack trace for thread 4
0 0x3ffffe1c28c in apps/libtfc_fmk.so
#1 0x3ffbe3cf910 in DoReleaseAllLocks(...) in apps/libtfc_fmk.so
#2 0x3ffbe3cf66c in ReleaseAllLocks(...) in apps/libtfc_fmk.so
#3 0x3ffbe3d23a0 in Execute(...) in apps/libtfc_fmk.so
#4 0x3ffbda8d230 in Bootstrap(...) in apps/libtfc_wp.so
#5 0x300000d8900 in UnknownProcedure3FromFile127(...) in
apps/libmcc_exec.so
#6 0x3ff805cf538 in __thdBase(...) in apps/libpthread.so

############################################################

Regards,
Mehaboob


ILL is for illegal signal (the one begin sent to the process) according
to this page: http://www.delorie.com/gnu/docs/textutils/coreutils_151.html

But I could be wrong ;-)

Anyway, happy debugging!

Wimmy
--
Being owned by someone used to be called slavery.
Now it's called commitment.
Back to top
mehaboob@gmail.com
*nix forums beginner


Joined: 02 May 2006
Posts: 39

PostPosted: Wed Jun 21, 2006 3:40 pm    Post subject: Re: Analysing core files Reply with quote

Wim Cossement wrote:

Quote:
mehaboob@gmail.com wrote:
Hi,

I have a core file generated by an application on Tru64 machine.I have
some tool which generates the output as below.But from here am not sure
how to proceed further or what to look for....Any help would be deeply
appreciated.

And also am not sure what is meant by signal ILL?
############################################################
Thread 4 terminated at PC 0x3ffffe1c28c by signal ILL
show thread
Thread Name State Substate Policy
Pri
------ ------------------------- --------------- -----------
------------ ---
* 4 <anonymous> running V5 SCHED_OTHER 19

Stack trace for thread 4
0 0x3ffffe1c28c in apps/libtfc_fmk.so
#1 0x3ffbe3cf910 in DoReleaseAllLocks(...) in apps/libtfc_fmk.so
#2 0x3ffbe3cf66c in ReleaseAllLocks(...) in apps/libtfc_fmk.so
#3 0x3ffbe3d23a0 in Execute(...) in apps/libtfc_fmk.so
#4 0x3ffbda8d230 in Bootstrap(...) in apps/libtfc_wp.so
#5 0x300000d8900 in UnknownProcedure3FromFile127(...) in
apps/libmcc_exec.so
#6 0x3ff805cf538 in __thdBase(...) in apps/libpthread.so

############################################################

Regards,
Mehaboob


ILL is for illegal signal (the one begin sent to the process) according
to this page: http://www.delorie.com/gnu/docs/textutils/coreutils_151.html

But I could be wrong ;-)

Anyway, happy debugging!

Wimmy
--
Being owned by someone used to be called slavery.
Now it's called commitment.

Hi,

Thanks for the reply.

I have deduced from stack traces that the crash is caused by SIGILL and
occurs in some library function.But am not sure as how to proceed
further.

Quote:
Stack trace for thread 4
0 0x3ffffe1c28c in apps/libtfc_fmk.so
#1 0x3ffbe3cf910 in DoReleaseAllLocks(...) in apps/libtfc_fmk.so
#2 0x3ffbe3cf66c in ReleaseAllLocks(...) in apps/libtfc_fmk.so

I have not done any core file debugging so far.Any help would be
appreciated.

Mehaboob
Back to top
Wim Cossement
*nix forums Guru Wannabe


Joined: 24 Feb 2005
Posts: 173

PostPosted: Thu Jun 22, 2006 8:33 am    Post subject: Re: Analysing core files Reply with quote

mehaboob@gmail.com wrote:
Quote:
Wim Cossement wrote:

mehaboob@gmail.com wrote:
Hi,

I have a core file generated by an application on Tru64 machine.I have
some tool which generates the output as below.But from here am not sure
how to proceed further or what to look for....Any help would be deeply
appreciated.

And also am not sure what is meant by signal ILL?
############################################################
Thread 4 terminated at PC 0x3ffffe1c28c by signal ILL
show thread
Thread Name State Substate Policy
Pri
------ ------------------------- --------------- -----------
------------ ---
* 4 <anonymous> running V5 SCHED_OTHER 19
Stack trace for thread 4
0 0x3ffffe1c28c in apps/libtfc_fmk.so
#1 0x3ffbe3cf910 in DoReleaseAllLocks(...) in apps/libtfc_fmk.so
#2 0x3ffbe3cf66c in ReleaseAllLocks(...) in apps/libtfc_fmk.so
#3 0x3ffbe3d23a0 in Execute(...) in apps/libtfc_fmk.so
#4 0x3ffbda8d230 in Bootstrap(...) in apps/libtfc_wp.so
#5 0x300000d8900 in UnknownProcedure3FromFile127(...) in
apps/libmcc_exec.so
#6 0x3ff805cf538 in __thdBase(...) in apps/libpthread.so

############################################################

Regards,
Mehaboob

ILL is for illegal signal (the one begin sent to the process) according
to this page: http://www.delorie.com/gnu/docs/textutils/coreutils_151.html

But I could be wrong ;-)

Anyway, happy debugging!

Wimmy
--
Being owned by someone used to be called slavery.
Now it's called commitment.

Hi,

Thanks for the reply.

I have deduced from stack traces that the crash is caused by SIGILL and
occurs in some library function.But am not sure as how to proceed
further.

Stack trace for thread 4
0 0x3ffffe1c28c in apps/libtfc_fmk.so
#1 0x3ffbe3cf910 in DoReleaseAllLocks(...) in apps/libtfc_fmk.so
#2 0x3ffbe3cf66c in ReleaseAllLocks(...) in apps/libtfc_fmk.so

I have not done any core file debugging so far.Any help would be
appreciated.

Mehaboob

I realy can't help you on this one and I also think most readers here
can't help you as well.

You might get more luck in a programming/debuggin language (C/C++??)
newsgroup since those people should have some more knowledge about
debugging.

Wimmy
Quote:



--
Being owned by someone used to be called slavery.
Now it's called commitment.
Back to top
John Reguera
*nix forums beginner


Joined: 27 Apr 2005
Posts: 2

PostPosted: Tue Jun 27, 2006 12:49 pm    Post subject: Re: Analysing core files Reply with quote

It appears that the thread caught a SIGILL.
Although (as you state in a later reply), it appears that the
SIGILL happened within a library, it is very possible (and probable)
that the fault happened long before the SIGILL occurred.
ex. a memory corruption occurs
at a later point in time, some varaible attempts to access this
corrupted memory and a fault occurs.
The problem manifests itself in the library, but the root cause
isn't associated with the library.

This appears to be a threaded application. I would be happy to assist with
debugging of the problem.

We should take this out of the newsgroup though.
Please reply to john.reguera@<nospam>hp.com

Thanks

John Reguera
POSIX Threads Engineering
Hewlett Packard Corp.


<mehaboob@gmail.com> wrote in message
news:1150895303.748330.288950@u72g2000cwu.googlegroups.com...
Quote:
Hi,

I have a core file generated by an application on Tru64 machine.I have
some tool which generates the output as below.But from here am not sure
how to proceed further or what to look for....Any help would be deeply
appreciated.

And also am not sure what is meant by signal ILL?
############################################################
Thread 4 terminated at PC 0x3ffffe1c28c by signal ILL
show thread
Thread Name State Substate Policy
Pri
------ ------------------------- --------------- -----------
------------ ---
* 4 <anonymous> running V5 SCHED_OTHER
19

Stack trace for thread 4
0 0x3ffffe1c28c in apps/libtfc_fmk.so
#1 0x3ffbe3cf910 in DoReleaseAllLocks(...) in apps/libtfc_fmk.so
#2 0x3ffbe3cf66c in ReleaseAllLocks(...) in apps/libtfc_fmk.so
#3 0x3ffbe3d23a0 in Execute(...) in apps/libtfc_fmk.so
#4 0x3ffbda8d230 in Bootstrap(...) in apps/libtfc_wp.so
#5 0x300000d8900 in UnknownProcedure3FromFile127(...) in
apps/libmcc_exec.so
#6 0x3ff805cf538 in __thdBase(...) in apps/libpthread.so

############################################################

Regards,
Mehaboob
Back to top
Google

Back to top
Display posts from previous:   
Post new topic   Reply to topic Page 1 of 1 [5 Posts] View previous topic :: View next topic
The time now is Tue Dec 02, 2008 12:49 pm | All times are GMT
navigation Forum index » *nix » Tru64
Jump to:  

Similar Topics
Topic Author Forum Replies Last Post
No new posts RE : Re: RE : Re: Problem with postfix-2.1.5+sasl2 on Fed... Lucienhélène DOSSEH Postfix 0 Thu Jul 20, 2006 12:12 pm
No new posts howto log in from one bsd-server to another and move file... Tobias Steer FreeBSD 3 Thu Jul 20, 2006 10:02 am
No new posts Problem with postfix-2.1.5+sasl2 on Fedora Core 3 Lucienhélène DOSSEH Postfix 9 Wed Jul 19, 2006 4:11 pm
No new posts Binary Files Ronin C++ 8 Wed Jul 19, 2006 3:12 pm
No new posts Bug#378877: ITP: libsvm-doc -- documentation and example ... Rudi Cilibrasi devel 0 Wed Jul 19, 2006 1:50 pm

Air Force One Shoes | Fast Loans | Project cars for sale | Ringtones | McDonalds
Copyright © 2004-2005 DeniX Solutions SRL
 
Other DeniX Solutions sites: Unix/Linux blog |  electronics forum |  medicine forum |  science forum | 
Privacy Policy


Powered by phpBB © 2001, 2005 phpBB Group
[ Time: 0.2496s ][ Queries: 16 (0.1520s) ][ GZIP on - Debug on ]