78
votes
13answers
4k views
Is DateTime.Now the best way to measure a function’s performance?
I need to find a bottleneck and need to accurately as possible measure time.
Is the following Code Snippet the best way to measure the performance?
DateTime startTime = DateTime. …
12
votes
12answers
3k views
Is gettimeofday() guaranteed to be of microsecond resolution?
So I find myself porting a game that was originally written for the Win32 API to Linux (well, porting the OS X port of the Win32 port to Linux), and have implemented QueryPerforman …
10
votes
4answers
843 views
High resolution timer in .NET
I'd like to do some basic profiling of my code, but found that the DateTime.Now in C# only have a resolution of about 16 ms. There must be better time keeping constructs that I hav …
8
votes
1answer
902 views
countdown timer in JSP/Servlets
Hi,
I am developing an online examination using servlets/jsp.I need to add a count down (hh/mm/ss) timer to the questions page that would end the exam and redirects to results page …
8
votes
3answers
3k views
Is there a Timer class in C# that isn’t in the Windows.Forms namespace?
I want to use a timer in my simple .Net application written in C#. The only one I can find is the Windows.Forms.Timer class. I don't want to reference this namespace just for my …
7
votes
6answers
1k views
How scalable is System.Threading.Timer?
I'm writing an app that will need to make use of Timers, but potentially very many of them. How scalable is the System.Threading.Timer class? The documentation merely say it's "l …
6
votes
7answers
269 views
How do you unit test classes that use timers internally?
Like it or not, occasionally you have have to write tests for classes that make internal use of timers.
Say for example a class that takes reports of system availability and raise …
6
votes
5answers
996 views
CPU clock frequency and thus QueryPerformanceCounter wrong?
I am using QueryPerformanceCounter to time some code. I was shocked when the code starting reporting times that were clearly wrong. To convert the results of QPC into "real" time …
6
votes
7answers
5k views
C++ Timer function to provide time in nano seconds
I wish to calculate the time it took for an API to return a value.
The time taken for such an action is in the space of nano seconds. As the API is a C++ class/function, I am using …
6
votes
7answers
2k views
1ms resolution timer under linux recommended way
Hi,
I need a timer tick with 1ms resolution under linux. It is used to increment a timer value that in turn is used to see if various Events should be triggered. The POSIX timerfd …
6
votes
2answers
317 views
Does Linux provide a monotonically increasing clock to applications
Does Linux/Unix/Posix provide an API to user-space applications to access a monotonically increasing clock, with centisecond to millisecond accuracy?
On Linux, /proc/uptime provid …
5
votes
4answers
120 views
What is the maximum precision of the Timer in .NET?
I'm wondering what the precision of the Timer class is in System.Timers, because it's a double (which would seem to indicate that you can have fractions of milliseconds). What is i …
5
votes
9answers
937 views
C# Why are timer frequencies extremely off?
Both System.Timers.Timer and System.Threading.Timer fire at intervals that are considerable different from the requested ones.
For example:
new System.Timers.Timer(1000d / 20);
…
5
votes
4answers
955 views
Using a Timer in C#
I'm trying to make a form invisible for x amount of time in c#.
Any ideas?
Thanks,
Jon
5
votes
6answers
4k views
System.currentTimeMillis vs System.nanoTime
Accuracy Vs. Precision
What I would like to know is whether I should use System.currentTimeMillis() or System.nanoTime() when updating my object's positions in my game? Their cha …
