Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

36
votes
12answers
82k views

C++ obtaining milliseconds time on Linux — clock() doesn't seem to work properly

On Windows, clock() returns the time in milliseconds, but on this Linux box I'm working on, it rounds it to the nearest 1000 so the precision is only to the "second" level and not to the milliseconds ...
16
votes
4answers
700 views

R: Display a time clock in the R command line

I wonder if there is a way to display the current time in the R command line, like in MS DOS, we can use "Prompt $T $P$G" to include the time clock in every prompt line. Something like ...
12
votes
3answers
3k views

Code a timer in a python GUI in TKinter

I need to code a program with GUI in python (I'm thinking of using TKinter, 'cause it's easy, but I'm open to suggestions). My major problem is that I don't know how to code a timer (like a clock... ...
11
votes
3answers
535 views

Java bug in sleep() when changing OS time : any workaround?

The bug that annoys me is the same than this ticket. Basically, if you change the OS clock to a date in the past, all the thread that were sleeping at the time of the change won't wake up. The ...
10
votes
6answers
327 views

Small footprint clock synchronization without NTP

I'm looking for a simple clock synchronization protocol that would be easy to implement with small footprint and that would work also in the absence of internet connection, so that it could be used ...
10
votes
3answers
2k views

How do I get monotonic time durations in python?

I want to log how long something takes in real walltime. Currently I'm doing this: startTime = time.time() someSQLOrSomething() print "That took %.3f seconds" % (time.time() - startTime) But that ...
9
votes
2answers
340 views

Hardware clock signals implementation in Linux Kernel

I am looking at some pointers for understanding how the Linux kernel implements the setting up of various hardware clocks. This basically relates to working with setting up the various clocks that ...
8
votes
2answers
585 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 ...
8
votes
3answers
1k views

Calculating number of seconds between two points in time, in Cocoa, even when system clock has changed mid-way

I'm writing a Cocoa OS X (Leopard 10.5+) end-user program that's using timestamps to calculate statistics for how long something is being displayed on the screen. Time is calculated periodically ...
8
votes
4answers
6k views

How to generate event on a specific time of clock in C#?

How can i generate an event on a specific time say i want to generate alert at 8:00 AM that its 8:00 AM and on any given time of clock
8
votes
3answers
812 views

What happened to clockless computer chips?

Several years ago, the 'next big thing' was clockless computers. The idea behind it was that without a clock, the processors would run significantly faster. That was then, this is now and I can't ...
8
votes
4answers
7k views

How do I calculate the elapsed time of an event in java?

What's a simple/easy way to access the system clock using Java, so that I can calculate the elapsed time of an event?
7
votes
3answers
206 views

How to get the precision of high_resolution_clock?

C++11 defines high_resolution_clock and it has the member types period and rep. But I can not figure out how I can get the precision of that clock. Or, if I may not get to the precision, can I ...
7
votes
4answers
238 views

Drawing clock face in Mathematica (looking for a better solution)

I am trying to find a general solution for drawing clock face like graphical objects in Mathematica. I've already implemented a version of my own, but I think a much better solution must exist. A ...
7
votes
7answers
2k views

how does the function time() tell the current time and even when the computer has been powered off earlier?

how we can work on timer deals with milliseconds (0.001) how we could divide second as we want ?? how we could we deal with the second itself ???
6
votes
6answers
1k views

Is time.h clock() broken on my hardware?

I try to measure the clock cyles needed to execute a piece of code on the TMS32064x+ DSP that comes with the OMAP ZOOM 3430 MDK. I look at the "Programmer's Guide" of the DSP chip and it says that the ...
5
votes
1answer
678 views

What is the most reliable way to determine the CPU clock frequency of Android phones?

I found some references and ended up with the following code: String[] args = { "/system/bin/cat", "/sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_max_freq" }; cmd = new ProcessBuilder(args); Process ...
5
votes
4answers
639 views

C#: decrementing a clock using modulus math

Trying to emulate the rollover of a 24 hour clock by hand (with math vs. using the timespan classes). The incrementing part was easy to figure out how to roll over from 23:00 to 0:00 and from, but ...
5
votes
4answers
3k views

Linux clock_gettime(CLOCK_MONOTONIC) strange non-monotonic behavior

Folks, in my application I'm using clock_gettime(CLOCK_MONOTONIC) in order to measure the delta time between frames(a typical approach in gamedev) and from time to time I'm facing a strange behavior ...
5
votes
4answers
4k views

Intent to launch the clock application on android

I am facing a problem with a clock widget i made. I want the user to touch the clock and launch the clock app on the phone. this is the code: //this worked on my nexus 2.1 ...
5
votes
2answers
2k views

How to use clock() in C++

How do I call clock() in C++? For example, I want to test how much time a linear search takes to find a given element in an array.
5
votes
3answers
879 views

Faking time without changing Windows system clock

Does anybody know of a Windows tool to report fake dates/times to a process? Apparently there are Linux programs that can be used to test how the software will react in the future / in a different ...
4
votes
1answer
174 views

Understanding the different clocks of clock_gettime()

Hi I wanted to use the clock_gettime() function for measuring the performance of my code. I am unable to understand the difference between the different kinds of clocks used in the function from the ...
4
votes
1answer
166 views

Measuring the resolution of `std::clock()`

Is it possible to measure the resolution of the std::clock() call? Or is this a problem where observing without influencing isn't possible? I wrote the following naive benchmark: #include ...
4
votes
3answers
303 views

How to monitor CPU utilization using POSIX clock() function during runtime?

Is there any reliable method how a program can measure its CPU utilization during its runtime? I probably have to use a POSIX clock() function from time.h. The idea is first to use some milliseconds ...
4
votes
3answers
128 views

Bad Results: time(NULL) and clock()

#import <stdio.h> #import <time.h> int main (void) { printf("Clock ticks per second: %d\n", CLOCKS_PER_SEC); double check = clock(); int timex = time(NULL); for (int x = ...
4
votes
3answers
474 views

Setting an alarm (as in alarm clock) using intents

Since API level 9 (2.3) you can set an alarm using an intent: Intent i = new Intent(AlarmClock.ACTION_SET_ALARM); i.putExtra(AlarmClock.EXTRA_HOUR, 9); i.putExtra(AlarmClock.EXTRA_MINUTES, 37); ...
4
votes
2answers
612 views

How to determine if std::chrono::monotonic_clock is available?

C++0x N3092 states that monotonic_clock is optional: 20.10.5.2 Class monotonic_clock [time.clock.monotonic] Objects of class monotonic_clock represent clocks for which values of time_point ...
4
votes
2answers
6k views

How to create a JQuery Clock / Timer

I have a simple quiz application and I want display a nice timer / clock at the top of the page which shows the user how long they've been going for. (If I could somehow show them a timer for Total ...
4
votes
1answer
135 views

Monotonic clock on IRIX

I want to get a monotonic clock on IRIX, like: clock_gettime(CLOCK_MONOTONIC, &t); But CLOCK_MONOTONIC doesn't exist on IRIX. It has CLOCK_SGI_CYCLE, but that (as the names says) cycles too ...
4
votes
2answers
11k views

How can I format a timestamp in Perl?

I would like to get this timestamps formatting: 01/13/2010 20:42:03 - - Where it's always 2 digits for the number except for the year, where it's 4 digits. And it's based on a 24-hour clock. How ...
4
votes
8answers
6k views

How can I resolve the drifting clock for my Virtual Machine?

My Virtual Machine's clock drifts pretty significantly. There's documentation out there about dealing with this, but nothing seems to be working very well. Anyone have any suggestions, things that ...
3
votes
4answers
208 views

Computing algorithm running time in C

I am using the time.h lib in c to find the time taken to run an algorithm. The code structure is somewhat as follows :- #include <time.h> int main() { time_t start,end,diff; start = ...
3
votes
3answers
106 views

What conditions can cause clock() to return -1 (ie fail)?

I'm using clock() from time.h to provide a rough time elapsed mechanism for an operation I want performed around once per second. (I probably want to use time() but the majority of the question ...
3
votes
0answers
268 views

clock_gettime(CLOCK_MONOTONIC, ..) occasionally jumping backwards

After experiencing some problems with Erlang crashing, I've written a program that calls clock_gettime(CLOCK_MONOTONIC, &ts) repeatedly and checks to see if it ever goes backwards, and ...
3
votes
4answers
410 views

Nested if (rising_edge(clk)) statements in VHDL

so I’ve come across some old code that I have to replicate, but it won’t compile with the new Xilinx compiler, so I need to figure out exactly what it does. I have something like this: if ...
3
votes
3answers
376 views

How do I set the Windows system clock to the correct local time using C#?

How do I set the Windows system clock to the correct local time using C#?
3
votes
2answers
186 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 ...
3
votes
1answer
754 views

Android timer that works when device is sleeping

I'm writing a sports app that needs to track the elapsed time of quarter/half/period. Elapsed time needs to be accurate to the second. The game clock needs to continue to run even if the user ...
3
votes
1answer
781 views

Analog Clock with UIImages for Hands?

I want to know how to make an analog clock in iPhone SDK. However, I want the hands of the clock to be custom images and not squares drawn over like in this tutorial: ...
3
votes
1answer
187 views

Retrieve wall-time in Python using the standard library?

How can I retrieve wall-time in Python using the standard library? This question, and this question would suggest that something like clock_gettime(CLOCK_MONOTONIC_RAW) or /proc/uptime are most ...
3
votes
2answers
864 views

Listing of manufacturer's clock / alarm package and class name, Please add

THis is not really a question, Sorry. I just wanted help on getting the package and class names of alarm and clocks of different android makers' clock and alarm. I have a listing here of HTC, ...
3
votes
3answers
358 views

How accurate is the GPS Clock?

In my company we do have critical systems that require an accurate time. As so, we have an NTP server appliance with an outdoor GPS antenna that receives the time from the GPS satellites. My ...
3
votes
3answers
321 views

Simplest way to show a clock in C++ and Linux

I'm using C++ under Linux compiling with standard GCC. In my program I want to add a simple clock showing HH:MM:SS. What's the easiest way to do that?
3
votes
1answer
99 views

How to obtain user input on a clock interface

We would like to capture the user input pertaining to the hour & minute hands on a clock. What kind of clock interfaces are available to achieve this? (e.g. select 9.30 AM on the clock or select ...
3
votes
1answer
129 views

My clock never makes it past 8 seconds

So, I'm making a simple clock that just counts time from a static starting point. The problem is, when the second mark hits 8, it resets to 0. I can't figure out why. Help! Here's the clock: ...
3
votes
2answers
164 views

How to reset Ada.Real_Time.Clock?

when reading Ada.Real_Time.Clock right after power-up it shows a value that isn't close to zero and sometimes even negative. As far as I know Ada.Real_Time.Clock suppose to reset on power-up. How can ...
3
votes
4answers
423 views

Keep time in sync among servers without internet connection

I have 5 servers on a LAN without Internet connection. I need them to keep the clock in sync among them. I could configure them as NTP peers, and set a high stratum for the local clock of one of ...
3
votes
4answers
1k views

Calculating CPU frequency in C with RDTSC always returns 0

The following piece of code was given to us from our instructor so we could measure some algorithms performance: #include <stdio.h> #include <unistd.h> static unsigned cyc_hi = 0, cyc_lo ...
3
votes
2answers
296 views

Is there something like clock() that works better for parallel code?

So I know that clock() measures clock cycles, and thus isn't very good for measuring time, and I know there are functions like omp_get_wtime() for getting the wall time, but it is frustrating for me ...

1 2 3 4 5 7