[Mono-list] mono on a 64bit machine
Miguel de Icaza
miguel@ximian.com
Thu, 05 May 2005 20:28:57 -0400
Hello,
> I ran a test C# application on mono 1.0.4. The C# code is as follows:
>
> using System;
> using System.Threading;
> class test
> {
> public static void Main()
> {
> Thread.Sleep(60*5*1000);
> }
> }
>
> When compiled and run, the application sleeps as expected. But there
> are 5 mono processes running.
>
> The same when run on a 32-bit machine, shows only 2 processes.
Your system monitor is probably showing internal Mono threads.
But for 64-bit support, you should be using Mono 1.1.xx
Miguel.