Re: [fpc-pascal] Re: cannot make debugserver

2012-11-08 Thread Graeme Geldenhuys
On 2012-11-08 10:13, michael.vancann...@wisa.be wrote: > > That said, I am aware of the windows problem, but have till now not yet > found the cause of the problem. I too have tried to find the problem, but couldn't spot the issue. G. ___ fpc-pascal

Re: [fpc-pascal] Re: cannot make debugserver

2012-11-08 Thread michael . vancanneyt
On Wed, 7 Nov 2012, Graeme Geldenhuys wrote: On 07/11/2012 22:13, bsquared wrote: I like the tiOPF based Logging. Nice work. It is the most reliable logging framework I know. For example, the dbugintf unit in FPC has major issues when used under Windows. If you generate many messages p

Re: [fpc-pascal] Re: cannot make debugserver

2012-11-07 Thread Graeme Geldenhuys
On 07/11/2012 22:13, bsquared wrote: I like the tiOPF based Logging. Nice work. It is the most reliable logging framework I know. For example, the dbugintf unit in FPC has major issues when used under Windows. If you generate many messages per second (which happens easily when you debug V

Re: [fpc-pascal] Re: cannot make debugserver

2012-11-07 Thread Graeme Geldenhuys
On 07/11/2012 19:41, bsquared wrote: If I recall correctly you don't use Laz much; however, is it possible that it could log to Laz messages window? As Martin mentioned, I don't think you can log to the Laz messages window - it just captures FPC output. Regards, - Graeme - _

Re: [fpc-pascal] Re: cannot make debugserver

2012-11-07 Thread Ewald
On 11/07/2012 10:06 PM, Marco van de Voort wrote: > In our previous episode, Ewald said: >> Change all calls to (I don't know if argument lists are the same, it's >> been a long time) >> Listen() to fpListen() >> ShutDown() to fpShutDown() >> Socket to fpSocket() >> Bind() to fpBin

Re: [fpc-pascal] Re: cannot make debugserver

2012-11-07 Thread Martin
On 07/11/2012 20:41, bsquared wrote: If I recall correctly you don't use Laz much; however, is it possible that it could log to Laz messages window? I don't think so. Don't think you can log to message window at all. But debugger has an event window. You can set breakpoints, that do not stop

Re: [fpc-pascal] Re: cannot make debugserver

2012-11-07 Thread Marco van de Voort
In our previous episode, Ewald said: > Change all calls to (I don't know if argument lists are the same, it's > been a long time) > Listen() to fpListen() > ShutDown() to fpShutDown() > Socket to fpSocket() > Bind() to fpBind() > > Prefix symbols: > Family, port and addr symbo

Re: [fpc-pascal] Re: cannot make debugserver

2012-11-07 Thread Ewald
Hmm, just a suggestion: Change all calls to (I don't know if argument lists are the same, it's been a long time) Listen() to fpListen() ShutDown() to fpShutDown() Socket to fpSocket() Bind() to fpBind() Prefix symbols: Family, port and addr symbols with `sin_` Make sure that

Re: [fpc-pascal] Re: cannot make debugserver

2012-11-07 Thread Graeme Geldenhuys
On 2012-11-07 18:51, bsquared wrote: > the debugserver server that is an example in fpGUI. I built that and it > works. tiOPF was also suggested. I intend to look into it as well. I use both of those. Just a small note that the tiOPF logging has a few more convenience LogValue() etc methods,