我注意到出现使用System.Timers.Timer
对象的程序非常耗费CPU(单CPU核心几乎是100%)。
我正在使用Ubuntu 11.10,这是我的单声道版本:
mono -V
Mono JIT compiler version 2.10.5 (Debian 2.10.5-1)
Copyright (C) 2002-2011 Novell, Inc, Xamarin, Inc and Contributors. www.mono-project.com
TLS: __thread
SIGSEGV: altstack
Notifications: epoll
Architecture: amd64
Disabled: none
Misc: softdebug
LLVM: supported, not enabled.
GC: Included Boehm (with typed GC and Parallel Mark)
以下是示例程序,它会导致意外的高CPU使用率:
using System;
using System.Timers;
namespace MonoCPUTest
{
class Program
{
static Timer _refresh = new Timer();
static void Main(string[] args)
{
_refresh.Interval = 2000;
_refresh.AutoReset = true;
_refresh.Elapsed += (x, y) => refresh();
_refresh.Start();
while (true)
{
Console.WriteLine("loop");
System.Threading.Thread.Sleep(10000);
}
}
static void refresh()
{
Console.WriteLine("refresh");
}
}
}
非常感谢您的帮助。
答案 0 :(得分:1)
我刚刚测试过(通过复制粘贴,编译和执行代码)并且无法重现问题,CPU负载大约是0.我正在使用更新版本的Mono,特别是从git tree couple编译的版本几天前;所以,如果有这样的问题,那就修好了。
我想如果没有外部PPA,升级你的Mono是不可能的,但是如果你因为某些其他原因没有被迫使用这个版本,这就是应该做的。您也可以从源代码编译一个,这与configure,make,make install一样简单;)