Tagged Questions
The time-t tag has no wiki summary.
20
votes
5answers
979 views
How to stop time from running backwards on Linux?
Here's a little test I've written to verify that time does indeed only run forwards in Linux.
#include <time.h>
#include <sys/time.h>
bool timeGoesForwardTest2()
{
timeval tv1, tv2; ...
5
votes
3answers
982 views
How to use time > year 2038 on official Windows Python 2.5
The official Python 2.5 on Windows was build with Visual Studio.Net 2003, which uses 32 bit time_t. So when the year is > 2038, it just gives exceptions.
Although this is fixed in Python 2.6 (which ...
4
votes
2answers
208 views
ISO 8601 to time_t conversion in C or vice versa
According to ISO 8601, time can be specified in different formats.
My program does not know which exact ISO 8601 format will be specified.
In this case, how can I convert it to time_t?
strptime ...
3
votes
1answer
58 views
C: Set time_t to next 10pm
I want to set a time_t variable to the next date/time at 10pm. So for example, if it was 11pm it would set the time_t to the 10pm the next day (23 hours later) or if it was 5pm it would set it to 10pm ...
3
votes
5answers
538 views
Segmentation fault on time(0);
I'm rewriting an old program to do some new stuff, and suddenly I get a segmentation fault error on the following line of code:
time_t seconds_since_time_begun = time(0);
Why, oh why?
Update:
I ...
2
votes
3answers
263 views
fastest way to get time_t from YYYYMMDDHHMMSS string
Is this legit? Im trying to get to a time_t as fast as possible given a string formatted like YYYYMMDDHHMMSS.
static time_t ConvertToSecSince1970(char *szYYYYMMDDHHMMSS)
{
struct tm Tm;
...
2
votes
2answers
584 views
ISO 8601 to time_t in C++
anyone knows to go from ISO 8601 to time_t?
I am using C++ and it needs to work on Windows and Mac.
I have written the code but I am sure there is a version that is more "standard".
Any thoughts on ...
2
votes
3answers
1k views
Get time_t / timeval corresponding to ( local_timezone ) midnight on a given date
Given a time_t or struct timeval, how do I get the timeval or time_t of midnight EST/EDT ( local timezone ) on that day ?
As in assuming local timezone is EST/EDT, given a time_t corresponding to say ...
2
votes
3answers
2k views
What primitive data type is time_t?
I do not know the data type of time_t. Is it a float double or something else? Because if I want to display it I need the tag that corresponds with it for printf. I can handle the rest from there for ...
2
votes
1answer
614 views
_USE_32BIT_TIME_T equivalent for gcc
on Visual studio I can force use of 32 bit time_t by declaring _USE_32BIT_TIME_T is there a similar equivalent for gcc? or is it always 32 bit or is it always 64 bit?
2
votes
3answers
3k views
Time into string with HH:MM:SS format (C-programming)
I need to get the current time in a "HH:MM:SS"-format into a character array (string) so I can output the result later simply with a printf("%s", timeString);
I'm pretty confused on the timeval and ...
2
votes
3answers
4k views
easy way to add 1 month to a time_t in C/C++
I have some code that uses the Oracle function add_months to increment a Date by X number of months.
I now need to re-implement the same logic in a C / C++ function. For reasons I don't want/need to ...
1
vote
3answers
267 views
Addition some interval to tm structs
I have one struct tm.
And I need to add some fixed interval(given in xx years, xx mongth, xx days)
to tm struct.
Is any standart function to do this?
1
vote
2answers
414 views
Best way to convert Unix time_t to/from abitrary timezones?
My code receives a time_t from an external source. However, that time_t isn't acutally based on UTC Epoch time, along with it I get a timezone string (eg, EDT, PST, etc), and its based on this ...
1
vote
3answers
410 views
Two seperate tm structs mirroring each other
Here is my current situation:
I have two tm structs, both set to the current time
I make a change to the hour in one of the structs
The change is occurring in the other struct magically....
How do I ...
1
vote
1answer
749 views
Converting a time_t to NSDate object?
Is there any method provided by Apple or any technique that can convert a time_t type variable to an NSDate object?
1
vote
2answers
3k views
How to printf a time_t variable as a floating point number?
I'm using a time_t variable in C (openMP enviroment) to keep cpu execution time...I define a float value sum_tot_time to sum time for all cpu's...I mean sum_tot_time is the sum of cpu's time_t values. ...
1
vote
2answers
1k views
Convert MYSQL Timestamp to time_t
I'm writing a multi-threaded program that needs to be able to check if a row requires updating and act accordingly.
I had problems using the built in date/time functions of MySql and so decided to ...
1
vote
4answers
646 views
Writing a function to display current day using time_t?
I've been writing a time converter to take the systems time_t and convert it into human readable date/time. Oh, and this is my second python script ever. We'll leave that fact aside and move on.
The ...
0
votes
1answer
77 views
C Programming The program result is changed by time(&start) function of <time.h>
Recently I experienced very strange situation by my C program.
Usually my program works fine, but if I add just a few lines to check elapsed time, the result changes.
The code of which result changed ...
0
votes
2answers
31 views
c time formattings
How do I format a time_t structure to something like this year-month-day h:m:s,
I have already tried using ctime:
time_t t = time((time_t*) NULL);
char *t_format = ctime(&t);
but it doesn't ...
0
votes
2answers
61 views
fprintf and difftime madness
Searched for answer for this but couldn't find anything. The closest I could find was
difftime returning 0 when there is clearly a difference Which has a great explanation that has to do with how the ...
0
votes
3answers
123 views
Parsing user input using time_t
My idea is, if user enters t = 2.5, then I extract 2 and 0.5 separately in 2 different variables. But I am unable to do that.
Here is the code:
$ export LT_LEAK_START=1.5
$ echo $LT_LEAK_START
...
0
votes
1answer
205 views
swig/python detected a memory leak of type time_t
My code works, but the following warning appears:
swig/python detected a memory leak of type 'time_t *', no destructor found
How can I calm it down ?
0
votes
2answers
250 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
2answers
499 views
Convert a C++ time_t to Delphi TDateTime
In a Delphi XE application, I am reading values from a database originally created by a C++ program. There is a date column, stored (it would appear) as time_t, i.e. Unix time, the number of seconds ...
0
votes
1answer
468 views
creating formatted NSDate using NSDateFormatter or mktime
I'm just trying to create a NSDate object with string as:2011-02-10 4:30:45
Take a look at the code:
Approach OBJC:
-(NSDate *)get_date_df:(NSString *)dstr
{
NSLog(@"1> %@",dstr);
...
0
votes
1answer
137 views
How do I convert a time to tm struct instead of CTime class
I currently have code that creates a CTime object from a defined value.
#define TIME_VALUE 0x301DDF00 // Aug 1, 1995 @ 04:00:00
CTime t = CTime( TIME_VALUE );
This creates the desired date of Aug ...
0
votes
2answers
4k views
C - Convert time_t to string with format YYYY-MM-DD HH:MM:SS
is there any way to convert a time_t to a string with the format YYYY-MM-DD HH:MM:SS automatically, keeping the code portable?
0
votes
5answers
1k views
Converting days since epoch to seconds since epoch
At my new workplace, they represent a lot of dates as "days since epoch" (which I will hereafter call DSE). I'm running into issues in JavaScript converting from DSE to seconds since epoch (UNIX ...