mono-list  

Re: [Mono-list] dmcs doesn't seem to be compiling for 3.5?

Alix
Tue, 09 Mar 2010 07:38:42 -0800

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  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list