Re: [fpc-pascal] fpc verbosity

2007-08-23 Thread Jonas Maebe
On 23 Aug 2007, at 01:09, Darius Blaszijk wrote: Is the following correct? C:\FPC\rtlfpc -v0 myproject.pp Free Pascal Compiler version 2.3.1 [2007/08/22] for i386 Copyright (c) 1993-2007 by Florian Klaempfl Shouldn't fpc -v0 -l myproject.pp give the above result? -l is in the default

Re: [fpc-pascal] fpc verbosity

2007-08-23 Thread Vincent Snijders
Jonas Maebe schreef: On 23 Aug 2007, at 01:09, Darius Blaszijk wrote: Is the following correct? C:\FPC\rtlfpc -v0 myproject.pp Free Pascal Compiler version 2.3.1 [2007/08/22] for i386 Copyright (c) 1993-2007 by Florian Klaempfl Shouldn't fpc -v0 -l myproject.pp give the above result? -l

[fpc-pascal] notify and notigyall

2007-08-23 Thread ik
Hi, Is there an equivalent for Java's sleep and notify/notifyAll in FPC's rtl ? Thanks, Ido -- http://ik.homelinux.org/ ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] notify and notigyall

2007-08-23 Thread Marco van de Voort
Is there an equivalent for Java's sleep and notify/notifyAll in FPC's rtl ? I'm sorry. I don't know Java that well. Maybe it is easier to describe the exact behaviour that you want instead of drawing a parallel ___ fpc-pascal maillist -

Re: [fpc-pascal] notify and notigyall

2007-08-23 Thread ik
On 8/23/07, Marco van de Voort [EMAIL PROTECTED] wrote: Is there an equivalent for Java's sleep and notify/notifyAll in FPC's rtl ? I'm sorry. I don't know Java that well. Maybe it is easier to describe the exact behaviour that you want instead of drawing a parallel Lets say I have

Re: [fpc-pascal] notify and notigyall

2007-08-23 Thread ik
On 8/23/07, Mattias Gaertner [EMAIL PROTECTED] wrote: On Thu, 23 Aug 2007 21:32:41 +0300 ik [EMAIL PROTECTED] wrote: On 8/23/07, Marco van de Voort [EMAIL PROTECTED] wrote: Is there an equivalent for Java's sleep and notify/notifyAll in FPC's rtl ? I'm sorry. I don't know Java

Re: [fpc-pascal] notify and notigyall

2007-08-23 Thread Luca Olivetti
En/na Mattias Gaertner ha escrit: Maybe you can try http://www.freepascal.org/docs-html/rtl/system/rtleventwaitfor.html If this works, you can write a small example for the wiki: http://wiki.lazarus.freepascal.org/Multithreaded_Application_Tutorial How are these different to the

Re: [fpc-pascal] notify and notigyall

2007-08-23 Thread Jonas Maebe
On 23 Aug 2007, at 21:29, Luca Olivetti wrote: How are these different to the TEventObject,TSimpleEvent classes in syncobjs? Just curious, since I usually do with syncobjs, and I don't see a big difference between MyEvent.SetEvent/MyEvent.WaitFor and RTLEventSetEvent/RTLEventWaitFor If

Re: [fpc-pascal] notify and notigyall

2007-08-23 Thread Vinzent Hoefler
On Thursday 23 August 2007 17:02, ik wrote: Hi, Is there an equivalent for Java's sleep and notify/notifyAll in FPC's rtl ? The SetEvent methods of RtlWaitEvent (notify) and RTLSimpleEvent (notify all), IIRC. Vinzent. ___ fpc-pascal maillist -

Re: [fpc-pascal] notify and notigyall

2007-08-23 Thread Vinzent Hoefler
On Thursday 23 August 2007 19:47, Jonas Maebe wrote: On 23 Aug 2007, at 21:29, Luca Olivetti wrote: How are these different to the TEventObject,TSimpleEvent classes in syncobjs? Just curious, since I usually do with syncobjs, and I don't see a big difference between