Den 15-03-2011 15:24, Glenn Attwood skrev:
(gdb) bt #0 0x004c3422 in __kernel_vsyscall () #1 0x00a7a651 in raise () from /lib/tls/i686/cmov/libc.so.6 #2 0x00a7da82 in abort () from /lib/tls/i686/cmov/libc.so.6 #3 0x08072023 in ?? () #4 <signal handler called> #5 0x0806f888 in ?? () #6 0x0805d82c in ?? () #7 0x00a66bd6 in __libc_start_main () from /lib/tls/i686/cmov/libc.so.6 #8 0x08049d71 in ?? () (gdb)
unfortunately it seems your binary was built without the debugging symbols included (probably "stripped" as it's called). That makes it rather difficult to guess what is happening, since I don't know what code is located at address 0x0806f888 ...
Did you compile it yourself or use a pre-compiled binary ? If you could compile it with debugging symbols included that would be much more helpful. With the gcc compiler, make sure the CFLAGS in your Makefile include the "-g" option (it does by default in the Xymon source archive).
Regards, Henrik