Re: Application crash on HP-UX 11.11 The program seems to accessing a null pointer. Ie. the return
value of some memory allocations was omitted.
Best you can do is: locate the source location and check
whether the requested resource allocation (ie. memory)
succeeded, and proceed as necessary...
"Thanvir" <thanvir@gmail.com> wrote in message
news:1113295627.063339.264310@z14g2000cwz.googlegr oups.com...
> We are currently trying to port a c++ application developed on linux to
> HP unix 11.11. We have already ported the application successfully on
> Windows, solaris. We have use the gnu c++ compiler 3.4.3.
> The compilation was successfull and we created a 64 bit executable but
> the application crashes immediately when I start it(Program received
> signal SIGSEGV, Segmentation fault.
> 0x40000000010a8fc4 in ?? ())
>
>
> Does anybody have any clue of how to trap what is wrong? the gdb stack
> is as follows.
> #0 0x40000000010a8fc4 in ?? ()
> warning: Attempting to unwind past bad PC 0x40000000010a8fc4
> #1 0x4000000000aca4dc in
> _GLOBAL__I_.._.._.._.._src_libstdc___v3_src_alloca tor_inst.cc_AAEE1AA9_4FB7074D
> () at mt_allocator.h:163
> #2 0x40000000000a9530 in __do_global_ctors_aux+0x38 ()
> #3 0xc00000000000cca0 in IN_do_list+0x178 () from
> /usr/lib/pa20_64/dld.sl
> #4 0xc00000000000f658 in crt_dld_main+0x7e0 () from
> /usr/lib/pa20_64/dld.sl
> #5 0xc00000000000a138 in $START$+0x80 () from /usr/lib/pa20_64/dld.sl
> Error accessing memory address 0x0: Invalid argument
>
> Thanks in advance
> |