[Mono-list] Build broken?

Tum tum@veridicus.com
Tue, 3 Dec 2002 23:59:19 +1300


Has anyone else noticed that the build is broken in the CVS?

I deleted my entire mono dir and ran mono-build-sh.sh.  When I try to
run mono, I the following error:

** (a:6968): WARNING **: Exception insinde function without unwind info

:(

Also, can anyone else confirm that the following code doesn't work on
the Linux build of mono?

using System;
using System.Threading;

class Test
{
	public static void Main()
	{
		ManualResetEvent w1, w2;

		w1 = new ManualResetEvent(false);		
		w2 = new ManualResetEvent(true);		

		// Prints -1.  Should print 1.
		Console.WriteLine(WaitHandle.WaitAny(new WaitHandle[]
{w1,w2}));

		w1.Set();
		w2.Set();

		// Prints false.  Should print true.
		Console.WriteLine(WaitHandle.WaitAll(new WaitHandle[]
{w1,w2}));
	}
}

Thanks :)

^Tum