Re: latest build 5.5 build 1162 problems & questions
Brought to you by:
set
From: Arnold W. <awi...@te...> - 2004-12-25 19:44:12
|
Wishing you all a very happy Christmas. Salvador Eduardo Tropea wrote: > > Try compiling with debug info both (TV and the editor). Both configure > scripts now have a "--debug" option. > Then run the editor under gdb or start the editor with the "-d 3" > command line option. > Run the binary from the "setedit/makes" directory, the editor.exe file. > Then when the editor hangs kill it. This will show the point where you > stopped it. > If you are using gdb the "backtrace" command will show the needed > information. If you use "-d 3" the editor will try to start gdb and > execute backtrace. > I've finally got a few minutes to send you the results of my tests. OK. I've recompiled with the debug info and have run it again, although I can only get what I would expect from your comments above when using "-d 3 " if I run makes/editor.exe not the one as installed - perhaps I'm going about it all wrong, though? here is the traceback when it hangs: ------------------------- Program received signal SIGTERM, Terminated. 0x402cb50b in nanosleep () from /lib/tls/libc.so.6 (gdb) backtrace #0 0x402cb50b in nanosleep () from /lib/tls/libc.so.6 #1 0x402f4c4b in usleep () from /lib/tls/libc.so.6 #2 0x40069033 in CLY_YieldProcessor () from /usr/lib/librhtv.so.2.0.4 #3 0x08088350 in execDialog () #4 0x400a8c3b in TProgram::getEvent () from /usr/lib/librhtv.so.2.0.4 #5 0x0808603e in execDialog () #6 0x4009b92c in TGroup::execute () from /usr/lib/librhtv.so.2.0.4 #7 0x400a93f1 in TProgram::run () from /usr/lib/librhtv.so.2.0.4 #8 0x0808a762 in execDialog () #9 0x402337f8 in __libc_start_main () from /lib/tls/libc.so.6 #10 0x40355edc in ?? () from /lib/tls/libc.so.6 (gdb) After thinking some more, the problem seems to have been that the old file was owned by root. Changing it to have the user own it, got the editor running - BUT, deleting the old desk top file altogether made it hang again - in the same place: Program received signal SIGTERM, Terminated. 0x402cb50b in nanosleep () from /lib/tls/libc.so.6 (gdb) backtrace #0 0x402cb50b in nanosleep () from /lib/tls/libc.so.6 #1 0x402f4c4b in usleep () from /lib/tls/libc.so.6 #2 0x40069033 in CLY_YieldProcessor () from /usr/lib/librhtv.so.2.0.4 #3 0x08088350 in execDialog () #4 0x400a8c3b in TProgram::getEvent () from /usr/lib/librhtv.so.2.0.4 #5 0x0808603e in execDialog () #6 0x4009b92c in TGroup::execute () from /usr/lib/librhtv.so.2.0.4 #7 0x400a93f1 in TProgram::run () from /usr/lib/librhtv.so.2.0.4 #8 0x0808a762 in execDialog () #9 0x402337f8 in __libc_start_main () from /lib/tls/libc.so.6 #10 0x40355edc in ?? () from /lib/tls/libc.so.6 (gdb) =============== Arnold |