Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
5answers
755 views

JavaScript setTimeout and changes to system time cause problems

I've noticed that if I set the setTimeout for 1 minute in the future, and then change my system time to 5 minutes in the past, the setTimeout function will trigger in 6 minutes. I did this is because ...
3
votes
2answers
190 views

What is the meaning of claims about clock precision/accuracy?

I've seen a lot of discussions of system clocks where it's said that e.g. standard PC clocks under e.g. Windows are precise only +/-10ms, whereas on a real time system clocks have submillisecond ...
2
votes
2answers
82 views

Multiple System Time Clock

I'm looking for a way to have multiple time clocks running along side the system time clock that are also accessible programatically so that I could access their time values much like I can system ...
1
vote
3answers
48 views

Changing the background of a button and sleep

I want to change the background of a button to red and then wait for one second before calling another activity. This is my code: btn1.setBackgroundColor(Color.RED); SystemClock.sleep(1000); ...
0
votes
0answers
11 views

How not to depend on OS time and date?

I'm working on a SCADA system. The only reliable time reference is Programmable Logic Controller's internal clock, but there are some difficulties that don't allow my data logging unit to use it. The ...
0
votes
0answers
35 views

Accuracy of the System Clock

For example, if I was able to enable/disable interrupts to prevent interrupts from invoking the scheduler is one wy to implement semaphores. This technique can influence I/O because it blocks all I/O ...
0
votes
1answer
224 views

reading the system clock value?

Is there a virtual/system clock running independently when a computer is booted? How can we read that value?