Sorry, never mind, it seems recursion in ReaderWriterLockSlim is one of the
things mono 2.6.1 does not support. Here's the code of the problematic
constructor:
(mcs/class/System.Core/System.Threading/ReaderWriterLockSlim.cs) :

    public ReaderWriterLockSlim (LockRecursionPolicy recursionPolicy) {
        this.recursionPolicy = recursionPolicy;
        if (recursionPolicy != LockRecursionPolicy.NoRecursion) {
            //reader_locks = new Dictionary<int,int> ();
            throw new NotImplementedException("recursionPolicy !=
NoRecursion not currently implemented");
        }
    }

Sorry for the unnecessary question.
-- 
View this message in context: 
http://n4.nabble.com/dmcs-doesn-t-seem-to-be-compiling-for-3-5-tp1586012p1586053.html
Sent from the Mono - General mailing list archive at Nabble.com.
_______________________________________________
Mono-list maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-list

Reply via email to