Le 08/05/2012 17:32, Christer Johansson a écrit :
>
> The compilation of Gambas3 3.1.90 r4702 was successful, "gambas3-runtime"
> and gambas3-gb-net was installed on my NAS (running Debian Lenny) without
> errors and the "Segmentation fault" I had with 3.1.1 is gone :)
>
> Unfortunately I experience the same weird error when using SocketServer
> as before with Gambas2. I've tried to trap error to a logfile using TRY
> but no error messages are logged even if the error is detected? The program
> just freezes after running OK in ~45-90 minutes (seems quite random) and I
> have to kill it.
>
> I've tried to reproduce the issue running the exact same code on Xubuntu
> 11.04
> (x86) but the code works fine without issues for hours on end...
>
> Before I point fingers at Gambas2/3 running on ARM my next question would
> be...
>
> Have anyone used SocketServer and/or Socket in Gambas2/3 on ARM
> successfully?
> Maybe some here already have got their RasPi up running??
>
> Any info/pointers are greatly appreciated since I'm out of ideas after
> trying
> for over a week.
>
> /CJ
>

When it is frozen, can you use gdb to get a backtrace?

First you must get the process id of the frozen Gambas program. Let's 
call it <process-id>.

Then you run:

$ gdb gbx3 <process-id>.

gdb will take the control of the process, so that you can print the 
backtrace...

(gdb) bt

... and send it to me.

-- 
Benoît Minisini

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user

Reply via email to