473,412 Members | 1,944 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,412 software developers and data experts.

c# Timer -- .NET performance counters on this system are corrupt

I made a program using the Timer class, and I start the timer with
Timer.Start(), but don't stop it with Timer.Stop(), and I assumed this
was ok, but, Process Explorer informs me, after running it about 10 or
20 times:

---------------------------
Process Explorer
---------------------------
The .NET performance counters on this system are corrupt.
Run Exctrlst from the Microsoft Windows Resource Kit to repair them.
---------------------------
OK
---------------------------

Is this because Timer can't clean itself up? (And I have no idea what
Exctrlst is.)

Zytan
Jun 27 '08 #1
10 3043
On Fri, 27 Jun 2008 15:00:35 -0700, Zytan <zy**********@gmail.comwrote:
I made a program using the Timer class, and I start the timer with
Timer.Start(), but don't stop it with Timer.Stop(), and I assumed this
was ok, but, Process Explorer informs me, after running it about 10 or
20 times:

---------------------------
Process Explorer
---------------------------
The .NET performance counters on this system are corrupt.
Run Exctrlst from the Microsoft Windows Resource Kit to repair them.
Does the problem resolve itself? For example, if you reboot? Or is it
persistent?

If it's persistent, you may want to read through these links:

http://blogs.msdn.com/mikedodd/archi...17/243799.aspx
(Note the date...you'll want to look in your .NET installation for the
most up-to-date .ini file, using the blog entry as a guide)

http://channel9.msdn.com/forums/Tech...are-corrupted/

http://support.microsoft.com/kb/300956

Maybe something in there will help.

Either way, if and when you get your perf counters fixed, can you
reproduce the problem at will? You are vague about which Timer class
you're using, but I don't really see why failing to stop an instance of
any of the Timer classes would corrupt your performance counters. That
sounds like a bug to me (in .NET).

Pete
Jun 27 '08 #2
Thanks for the reply, Pete.

Does the problem resolve itself? For example, if you reboot? Or is it
persistent?
The error only appeared once, and I rebooted, and I have not seen it
since. Although, I have not done much development since, so this
doesn't mean much.

I should NOTE that I've used the System.Windows.Forms.Timer before,
many times, in this exact manner (letting the form destruct it without
telling it to stop explicitly), and I have never seen this error
before.

However, it seemed strange that it appears right after I about 20 or
30 test runs of a really, really simple application that does nothing
more than making a System.Windows.Forms.Timer, and uses it to update a
rich text box. Note that it didn't appear right away, but only after
30 or 60 minutes of development and test running the program.

If it's persistent, you may want to read through these links:

http://blogs.msdn.com/mikedodd/archi...17/243799.aspx
(Note the date...you'll want to look in your .NET installation for the
most up-to-date .ini file, using the blog entry as a guide)

http://channel9.msdn.com/forums/Tech...ounters-are-co...

http://support.microsoft.com/kb/300956
Thanks for these links. I will update this thread if the problem
continues, with further information. As of yet, I specifically stop
the timer before the form closes, to see if this will resolve the
situation.

Either way, if and when you get your perf counters fixed, can you
reproduce the problem at will?
No, I cannot. I will mess with this and see if I can do this, and let
you know.

You are vague about which Timer class
you're using,
System.Windows.Forms.Timer

but I don't really see why failing to stop an instance of
any of the Timer classes would corrupt your performance counters. That
sounds like a bug to me (in .NET).
I agree.

Zytan
Jun 28 '08 #3
Either way, if and when you get your perf counters fixed, can you
reproduce the problem at will?

No, I cannot. I will mess with this and see if I can do this, and let
you know.
I cannot repro the issue. Perhaps it takes some time before Process
Explorer discovers it, I am not sure. I'll post back with any
findings.

Zytan
Jun 28 '08 #4
On Sat, 28 Jun 2008 12:38:52 -0700, Zytan <zy**********@gmail.comwrote:
[...]
>You are vague about which Timer class you're using,

System.Windows.Forms.Timer
In that case I am definitely skeptical that your corrupted counters have
anything to do with the use of the Timer class.
System.Windows.Forms.Timer uses WM_TIMER, if I recall correctly, and that
should not have anything to do with the performance counters.

Please do keep us updated if you see it happen again and you can determine
more specifics about the issue.

Pete
Jun 28 '08 #5
System.Windows.Forms.Timer
>
In that case I am definitely skeptical that your corrupted counters have
anything to do with the use of the Timer class.
System.Windows.Forms.Timer uses WM_TIMER, if I recall correctly, and that
should not have anything to do with the performance counters.
That would make sense, but I am uncertain how WM_TIMER is
implemented. The multi-media timer is probably good enough, though,
it normally has 0.001 seconds accuracy, which is all WM_TIMER has
through its invocation, so it probably uses the MM timer.

Please do keep us updated if you see it happen again and you can determine
more specifics about the issue.
I have not seen it appear since. And, I am not running ANY software
that uses the performance counters, so it's just strange that I got
the error at all. The only thing remotely linked to it was the usage
of System.Windows.Forms.Timer for 30 minutes just before it
occurred...

Thanks, Pete.

Zytan
Jun 30 '08 #6
On Mon, 30 Jun 2008 13:43:48 -0700, Zytan <zy**********@gmail.comwrote:
System.Windows.Forms.Timer

In that case I am definitely skeptical that your corrupted counters have
anything to do with the use of the Timer class.
System.Windows.Forms.Timer uses WM_TIMER, if I recall correctly, and
that
should not have anything to do with the performance counters.

That would make sense, but I am uncertain how WM_TIMER is
implemented.
Oddly enough, even after all these years I have never bothered to look
into that. :) However, the important thing to know is that it's an
unmanaged window message having zero to do with .NET. Since it's
specifically the ".NET performance counters" that were corrupted, there
really should be no connection.
The multi-media timer is probably good enough, though,
it normally has 0.001 seconds accuracy, which is all WM_TIMER has
through its invocation, so it probably uses the MM timer.
I doubt it. Actually, let me rephrase that...I know for a fact that the
winmm timer is different from the WM_TIMER timer. One particular
difference is that the winmm timers have better accuracy, in that WM_TIMER
is subject to the whims of the Windows thread scheduler, while the winmm
timer is implemented in a way to minimize the difference.

I wish I could recall more details, but my knowledge in that area "has
been lost to the sands of time", as they say. :)

Pete
Jul 1 '08 #7
That would make sense, but I am uncertain how WM_TIMER is
implemented.

Oddly enough, even after all these years I have never bothered to look
into that. :)
Me neither!

However, the important thing to know is that it's an
unmanaged window message having zero to do with .NET. Since it's
specifically the ".NET performance counters" that were corrupted, there
really should be no connection.
Agreed.

The multi-media timer is probably good enough, though,
it normally has 0.001 seconds accuracy, which is all WM_TIMER has
through its invocation, so it probably uses the MM timer.

I doubt it. Actually, let me rephrase that...I know for a fact that the
winmm timer is different from the WM_TIMER timer. One particular
difference is that the winmm timers have better accuracy, in that WM_TIMER
is subject to the whims of the Windows thread scheduler, while the winmm
timer is implemented in a way to minimize the difference.
Ah, didn't know that. I assumed they were the same timer.

But, WM_TIMER has to be based on the MM timer or the high performance
counter, one or the other, unless there's other counters I don't know
about (is the 18.2 Hz clock another counter, or is it the MM timer?).
I just assumed WM_TIMER was based on the MM timer.

I wish I could recall more details, but my knowledge in that area "has
been lost to the sands of time", as they say. :)
I'm not going to worry about this. If the problem crops up again,
I'll report back with findings, and do some more digging, but until
then, I have more important things to worry about ;)

Thanks, Pete

Zytan
Jul 2 '08 #8
On Wed, 02 Jul 2008 12:47:48 -0700, Zytan <zy**********@gmail.comwrote:
[...]
But, WM_TIMER has to be based on the MM timer or the high performance
counter, one or the other, unless there's other counters I don't know
about (is the 18.2 Hz clock another counter, or is it the MM timer?).
I just assumed WM_TIMER was based on the MM timer.
WM_TIMER predates winmm for sure (the multimedia timer was introduced to
address some of the limitations of WM_TIMER).

As I said, I don't actually know the specific implementation of WM_TIMER.
But I see no reason that it _must_ be based on some other timer that you
know about. It's entirely possible that Windows handles WM_TIMER
independently of any other timers.

Pete
Jul 3 '08 #9
WM_TIMER predates winmm for sure (the multimedia timer was introduced to
address some of the limitations of WM_TIMER).
Ah.
As I said, I don't actually know the specific implementation of WM_TIMER.
But I see no reason that it _must_ be based on some other timer that you
know about. It's entirely possible that Windows handles WM_TIMER
independently of any other timers.
Yes, true.

Zytan
Jul 3 '08 #10
System.Windows.Forms.Timer uses WM_TIMER, if I recall correctly.....

Just ran across this today:

http://msdn.microsoft.com/en-us/libr...rms.timer.aspx
"The Windows Forms Timer component is single-threaded, and is limited
to an accuracy of 55 milliseconds. If you require a multithreaded
timer with greater accuracy, use the Timer class in the System.Timers
namespace."

It sounds like it's using the 18.2 Hz clock... that's once every 55
ms.

Zytan
Jul 16 '08 #11

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Christopher Attard | last post by:
Hi, I need to create a dialog like the 'Add Counters' dialog box in perfmon. I'm using the System.Diagnostics namespace class in .NET and I've managed to do it. The problem arises when I'm...
7
by: James | last post by:
Hi Has anybody had any experience of ASP.Net performance counters not updating. In the performance monitor application when I try to add the groups ASP.NET and ASP.NET Applications the...
1
by: jvn | last post by:
I am experiencing a particular problem with performance counters. I have created a set of classes, that uses System.Diagnostics.PerformanceCounter to increment custom performance counters (using...
1
by: Robert Strickland | last post by:
I have a .Net web service (written for 1.1 Framework using C#) running on Windows 2003 with all latest patches. To help monitor the service, the code creates several performance counters. One...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.