[Mono-dev] Issues with Thread.CurrentThread on 4.2

2015-11-12 Thread Martin Potter
We have some code which works on Microsoft's runtime and used to work on Mono 3.12, but now fails on Mono 4.2. Simplified code to reproduce the issue is as follows: public class WorkStateThread { public void Start() { m_thread = new Thread(ThreadProc); m_thread.Start(Thread.CurrentThread); m_thr

Re: [Mono-dev] Issues with Thread.CurrentThread on 4.2

2015-11-12 Thread Zoltan Varga
Hi, Reported as: https://bugzilla.xamarin.com/show_bug.cgi?id=35828 Zoltan On Thu, Nov 12, 2015 at 12:42 PM, Martin Potter wrote: > We have some code which works on Microsoft’s runtime and used to work on > Mono 3.12, but now fails on Mono 4.2. Simplified code to reproduce the > issue