Re: [Mono-list] Monitor: Pluse() and Wait() - alternative ?

2011-08-10 Thread Matthias Wessendorf
Hi Jonathan, see here: http://msdn.microsoft.com/en-us/library/de0542zz%28v=VS.100%29.aspx (note that Portable Class Library supports Enter()) and here: http://msdn.microsoft.com/en-us/library/system.threading.monitor.pulse%28v=VS.100%29.aspx (not supported in PCL) Yes, it's kinda odd - and PCL

Re: [Mono-list] Monitor: Pluse() and Wait() - alternative ?

2011-08-10 Thread Robert Jordan
On 09.08.2011 23:53, Jonathan Pryor wrote: On Aug 9, 2011, at 9:34 AM, mwessendorf wrote: However I need to ensure this runs on the PCL (Portable Class Library) and therefore the above implementation does not work, since Pluse() / Wait() aren't supported in PCL Where can I find a

[Mono-list] Monitor: Pluse() and Wait() - alternative ?

2011-08-09 Thread mwessendorf
Hi, I am building a blocking queue implementation (which behaves like the JAva LinkedBlockingQueue). I found the following implementation, which works great:

Re: [Mono-list] Monitor: Pluse() and Wait() - alternative ?

2011-08-09 Thread Jonathan Pryor
On Aug 9, 2011, at 9:34 AM, mwessendorf wrote: However I need to ensure this runs on the PCL (Portable Class Library) and therefore the above implementation does not work, since Pluse() / Wait() aren't supported in PCL Where can I find a listing of the types and members in the PCL? I