Operating System - HP-UX
1846602 Members
1620 Online
110256 Solutions
New Discussion

Re: running program problem...

 
SOLVED
Go to solution
이준희_2
New Member

running program problem...

I run the program then a core dump comes out.
below is error stack
#0 0xc004d704 in pthread_mutex_init+0x1c () from /usr/lib/libpthread.1
#1 0xc021caec in libc_init+0x94 () from /usr/lib/libc.2
#2 0xc021c250 in __libc_init+0xf0 () from /usr/lib/libc.2
#3 0xc05a3b84 in hp__pre_init_libc+0x2c () from /usr/lib/libcma.2

What can I do?
3 REPLIES 3
이준희_2
New Member

Re: running program problem...

the attatched is the make file..
any advice or help is appreciated.
Indira Aramandla
Honored Contributor
Solution

Re: running program problem...

Hi,

Did you try relinking the software?

May be the cause of the problem could be that you were linking both -pthread and -cma libraries which is not allowed.

HPUX 11 release notes, says the POSIX.1c compliant APIs are provided in libpthread. Linking libdce/libcma and libpthread in the same application will result in incorrect application behavior.


IA
Never give up, Keep Trying
이준희_2
New Member

Re: running program problem...

thank you for reply.

then How can I relink the softwear?

the problem is our program use third vandor's API. and the API library call the cma library. moreover, the vandor can't support us. but, we must use the api because we don't have any alternative.

there is the solution to relink without source?