Tagged Questions

8
votes
3answers
178 views

C++: how to get the actual time with time and localtime?

I'm looking for a way to save the time in a HH::MM::SS fashion in C++. I saw here that they are many solutions and after a little research I opted for time and localtime. However, it seems like the ...
1
vote
2answers
658 views

localtime_r supposed to be thread safe, but causing errors in Valgrind DRD

I searched google as much as I could but I couldn't find any good answers to this. localtime_r is supposed to be a thread-safe function for getting the system time. However, when checking my ...
0
votes
2answers
24 views

localtime alternative that won't overwrite the supplied struct

Essentially, what I'm trying to do is to check the last access time of a file and compare it with a string. Here's the relevant block: struct stat file; char timeStr[ 100 ]; stat(nodes.at(0), ...
0
votes
2answers
31 views

c++ localtime when changing timezone

I have a setup working using localtime() to get a tm with the local times represented in it. And that is all good. However, if I change timezone while the application is running, it does not notice ...
0
votes
1answer
451 views

Accurate Timestamps using gettimeofday and localtime

I'm attempting to monitor system time elapsed across multiple applications and data paths via gettimeoday and localtime. In this example, I want to grab the system time (microsecond percision) right ...
0
votes
3answers
371 views

measure time difference

I want to measure in milliseconds how much time there is between when I start my application and another time, for example 16:00 o'clock. What is the best way to do this? I looked around "clock" ...
0
votes
3answers
297 views

Replacing time() and localtime() with user-independent equivalents

I have a program that uses time() and localtime() to set an internal clock, but this needs to be changed so that the internal clock is independent of the user and the "real" time. I need to be able ...