Tagged Questions
The time-precision tag has no wiki summary.
25
votes
4answers
60k views
How to measure time in milliseconds using ANSI C?
Using only ANSI C, is there any way to measure time with milliseconds precision or more? I was browsing time.h but I only found second precision functions.
24
votes
7answers
30k 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 change in movement is ...
13
votes
5answers
5k views
C# DateTime.Now precision
I just ran into some unexpected behavior with DateTime.UtcNow while doing some unit tests. It appears that when you call DateTime.Now/UtcNow in rapid succession, it seems to give you back the same ...
12
votes
4answers
40k views
Function that creates a timestamp in c#
I was wondering, is there a way to create a timestamp in c# from a datetime?
I need a millisecond precision value that also works in Compact Framework(saying that since DateTime.ToBinary() does not ...
11
votes
4answers
8k views
C# get time in milliseconds
I'm making a program in which I need to get the time in milliseconds. By time, I mean a number that is never equal to itself, and is always 1000 numbers bigger than it was a second ago. I've tried ...
8
votes
2answers
591 views
How precise is the internal clock of a modern PC?
I know that 10 years ago, typical clock precision equaled a system-tick, which was in the range of 10-30ms. Over the past years, precision was increased in multiple steps. Nowadays, there are ways to ...
4
votes
4answers
87 views
Comparing System.nanoTime() values resulting from different machines
Is it correct to compare two values resulting from a call to System.nanoTime() on two different machines? I would say no because System.nanoTime() returns a nanosecond-precise time relative to some ...
4
votes
2answers
2k views
Storing microseconds in MySQL: which workaround?
we're writing a scientific tool with MySQL support. The problem is, we need microsecond precision for our datetime fields, which MySQL doesn't currently support. I see at least two workarounds here:
...
2
votes
1answer
71 views
threading.Timer time precision
What does the time accuracy of Python's threading.Timer depend on?
Does it depend on the OS used?
Does it depend on the Python implementation used?
Does it depend on the interval?
How can it be ...
2
votes
3answers
514 views
Is there any way to get current time in nanoseconds using JavaScript?
So, I know I can get current time in milliseconds using JavaScript. But, is it possible to get the current time in nanoseconds instead?
1
vote
8answers
270 views
How can I (reasonably) precisely perform an action every N milliseconds?
I have a machine which uses an NTP client to sync up to internet time so it's system clock should be fairly accurate.
I've got an application which I'm developing which logs data in real time, ...
1
vote
2answers
1k views
Actionscript 3 high precision time method (microseconds)?
I need a high precision time method in microseconds rather than milliseconds for actionscript, unfortunately I couldn't find much help on the web.
I need such control in order to implement the usage ...
1
vote
2answers
219 views
How accurate can I expect the time to be from a stratum 0 NTP server on the same subnet on ethernet?
I have an application that depends on gpsd and ntpd to accurately set the system time on a linux machine.
gpsd is fed NMEA + PPS
The application is punping ~25MB per second over the network and I ...
0
votes
1answer
68 views
GetTime helper function. Some improvement code question
I'm trying to implement a GetTime helper function.
It gets the current time, measured in counts, then gets the number of counts per second of the system, so you can get the current time in seconds ...