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 ...
2
votes
2answers
341 views
Time issues
I am facing some problems in a cross platform program :
when I open a python shell in Linux and in Windows, I don't get the same time from the Epoch.
In Linux, I tried to do dpkg-reconfigure tzdata.
...
2
votes
3answers
260 views
Make Python respond to Windows timezone changes
When Python is running under Windows, time.localtime does not report the correct time if the timezone is changed during the life time of the Python instance. Under Linux, time.tzset can always been ...
1
vote
4answers
356 views
Perl Localtime Returning 16 Hours When Input is only Seconds
I must be doing something wrong, but I can't figure it out. When I give seconds as an argument to localtime(), I get seconds and 16 hours back.
my $startTime = time;
(process)
my $endTime = time;
...
1
vote
4answers
430 views
perl- help formatting a timestamp
I am reading in log data with the following time stamp format:
Sat Aug 07 04:42:21 2010
I want to convert it to something like this:
20100807044221
What is the best way to do this in perl? ...
0
votes
0answers
72 views
get system time using a func that does not calls malloc internally
in glibc malloc i am trying to maintain a time stamp per allocation. There is a separate hash table which i have created in glibc itself stores this timestamp entries. The format of the timestamp is ...
0
votes
1answer
35 views
Java (Processing Environment) will not provide me with the local time
I'm trying to get the epoc time adjusted for the local timezone (i.e. GMT-7, but it displays GMT). I'm fairly sure this should work, but it's not...
Calendar localTime = new ...
0
votes
2answers
274 views
Perl: How to convert a unix timestamp+timezone into local time
the basic question is in the header: I have a unix timestamp and a timezone, e.g. "America/Caracas" and I would like to convert it to the timezone's local time.
Searching through stackoverflow, I ...
0
votes
0answers
150 views
Timezone issues [closed]
Possible Duplicate:
[python] Time issues
Hello,
I am facing some problems in a cross platform program :
when I open a python shell in Linux and in Windows, I don't get the same time from ...
0
votes
2answers
251 views
get the current time in C
I want to get the current time of my system. For that i'm using the following code in C.
time_t now;
struct tm *mytime = localtime(&now);
if ( strftime(buffer, sizeof buffer, "%X", mytime) )
...
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 ...