[Mono-list] dmcs doesn't seem to be compiling for 3.5?
Alix
awolf.business at gmail.com
Tue Mar 9 09:34:53 EST 2010
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.
More information about the Mono-list
mailing list