Tagged Questions
The ctime tag has no wiki summary.
3
votes
2answers
86 views
ctime on iOS device not measuring time properly
I need to calculate the time that a piece of my code takes to execute, right now I am using clock_t like so:
clock_t start = clock();
/* Do something here */
float executionTime = ...
3
votes
2answers
646 views
C++, MingW, ctime, nanosleep() not found?
I just wanted to use nanosleep() but it seems not to be available in MingW ctime:
#include <ctime> //this is what I need, isn't it?
How can I use nanosleep on MingW? Thanks.
2
votes
1answer
60 views
What are the disadvantages to using ctime's tzset?
In a question about getting a system's time zone, this answer did not get up-voted.
It suggests the use of tzset() and some system globals (e.g. daylight, timezone, and tzname) from time.h.
After ...
2
votes
1answer
20 views
Understand successive call to ctime()
I have a question about how the glibc ctime() works.
Follows my snippet:
#include <stdio.h>
#include <time.h>
#include <stdlib.h>
int main (int argc,char** argv)
{
...
2
votes
3answers
146 views
Convert historical time to GMT
I need to convert some string times in the format "2011061411322100" into GMT - my first attempt is below. However, the problem is that the times are coming from another PC and is a historical time. ...
2
votes
2answers
288 views
C: How to print a particular `time` value in a particular timezone (by offset)?
I'm writing an application in C that parses data files recorded by an external program (over which I have no control). It's storing binary data, one field of which is a time in standard UNIX "epoch" ...
2
votes
2answers
253 views
Convert ctime to unicode and unicode to ctime python
I have converted a ctime value to unicode
1295478503.6789999
to
'Wed Jan 19 18:08:23 2011'
Can I go backwards?
From the second line to the first?
2
votes
6answers
2k views
Initializing static struct tm in a class
I would like to use the tm struct as a static variable in a class. Spent a whole day reading and trying but it still can't work :( Would appreciate if someone could point out what I was doing wrong
...
2
votes
2answers
2k views
Looking for good FILETIME converter
In question Looking for Good CTIME/Unixtime converter I asked for a good web based CTIME (Seconds since Jan 1, 1970) time converter. (Usually a 32 bit signed integer).
I needed a tool where I could ...
1
vote
2answers
128 views
Random Boolean Value
I'm trying to generate a random int that is either 0 or 1 in C++. Right now, I receive a 0 every time I run this code, and I'm not sure why. What's the problem here?
#include <ctime>
#include ...
1
vote
2answers
102 views
getdate and ctime not working properly
Here is my program time_play.c :
#include <stdlib.h>
#include <stdio.h>
#include <time.h>
int
main (void)
{
char *time_str = "2011-07-20 17:30:18";
time_t time_tm = ...
1
vote
1answer
112 views
Historical time to GMT\UTC with DST
Similar to:
Convert historical time to GMT
This time my scenario is:
I need to convert some string times in the format "2011061411322100" into GMT. The problem is that the times are coming from ...
1
vote
1answer
262 views
How to set a file's ctime with Python?
How can I set a Unix file's ctime?
(I'd much prefer an answer in terms of Python. If there's no way to do it with standard Python, then I suppose C is OK too.)
(Note: I know that one can use ...
1
vote
2answers
182 views
Seg fault with time and ctime, when porting from Linux to OSX
I am getting errors compiling code designed for (I believe) Linux on OSX. I have tracked down the issue to this section of code:
TIMEVAL = time(NULL);
char* TIMESTRING = ctime(&TIMEVAL);
...
1
vote
3answers
270 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
441 views
With python: intervals at x:00 repeat
How do I sched a repeat timer for 5 min intervals. Which fire at 00 seconds, then repeat at 00. Ok, not hard real-time but as close as possible with sys lags. Trying to avoid a build up in lags and ...
1
vote
1answer
450 views
PHP - linux/unix CTIME (inode change time) is being set when it's only being modified
According to: http://www.php.net/manual/en/function.filectime.php
"In most Unix filesystems, a file is considered changed when its inode data is changed; that is, when the permissions, owner, group, ...
1
vote
3answers
558 views
parse localtime in c++
Is there an easy "beginner" way to take the current time using <ctime> to a Date object that has
int month
int day
int year
for it's member variables? Thanks.
1
vote
1answer
2k views
Looking for good online CTIME/Unixtime converter
I need an online tool that you can paste a CTIME (Unixtime) timestamp into, and get out a nice human readable date string. I know how to call the functions in the various tools I use, but I want one ...
0
votes
2answers
34 views
I tried to come up with a cross platform alternative to sleep(), but my code isn't quite working
I'm doing a little beginner c++ program based on the game of snap.
When i output the card objects to the console, because of the computers processing speed naturally, a whole list of the cards that ...
0
votes
1answer
41 views
How to modify 'last status change' (ctime) property of a file in Unix?
I know there's a way to modify both 'modification' (mtime) and 'last access' (atime) time properties of a given file in Unix System by using "touch" command.
But I'm wondering whether there exists a ...
0
votes
0answers
21 views
tmpwatchc updates directory ctime? [closed]
I noticed that some directories under /tmp were updated ctime daily. As you can see below, I thought that was because of tmpwatch.
[root@localhost ~]# cat /etc/crontab
SHELL=/bin/bash
...
0
votes
1answer
68 views
trouble including ctime in an objective-c++ project
It keeps failing on this kind of message (just replace tm with clock, difftime, mktime, time, asctime, ctime, gmtime, localtime, strftime :
no member named 'tm' in global namespace
I'm linking to ...
0
votes
1answer
135 views
want to convert ColeDateTime to CTime
I am reading a datetime from database in a ColeDateTime format. I want to convert it to CTime to get the date month year and time.
CString repDt; //**this will hold the datetime which i read from ...
0
votes
5answers
73 views
Calculating time of execution with time() function
I was given the following HomeWork assignment,
Write a program to test on your computer how long it takes to do
nlogn, n2, n5, 2n, and n! additions for n=5, 10, 15, 20.
I have written a piece ...
0
votes
1answer
94 views
Is it possible to print the same timestamp as NSLog small within a macro?
I want to make a custom NSLog() that logs to a file and I want to ship with it. NSLog also prints to the system log. I don't want that on the users machine. So I have to roll my own. Thats fine but: ...
0
votes
2answers
53 views
How to tell which file was created first?
On a Linux system (the one in front of me is an Ubuntu 10.04, but that shouldn't matter), how can I tell which of two files created within the same second was created first? The process I control ...
0
votes
3answers
664 views
system time in millisecond c++
I have a queue with structs. This struct includes the exact time of pushing itself into queue
I have something like this to see system time:
time_t rawtime;
struct tm * timeinfo;
time ( ...
0
votes
1answer
86 views
ctime returning null
If time_t is defined as __darwin_time, which itself is defined as long in MacOS X, why does the following code outputs 8 Time is (null)? Maybe it's something silly, but I can't really understand it.
...
0
votes
2answers
176 views
Get interval between 2 operations using ctime?
I am interested in showing the execution time for a program in C, at diverse points, using ctime.
I have tried something like that, but it must not be right...
int main() {
time_t tm1, tm2;
...
0
votes
1answer
89 views
ctime and time warnings compiling on OSX
I am getting some warnings when compiling a C program on OSX 10.6.5, which seem to be quite critical.
extras.c:15: warning: implicit declaration of function ‘time’
extras.c: In function ‘outlog’:
...
0
votes
3answers
313 views
Using CTime & asctime to assign time to a string or vector string
I would like to use asctime to assign the time to a string.
time_t rawtime;
time ( &rawtime );
vector<string> TTime;
TTime.resize(10);
TTime = asctime(localtime ( &rawtime ));
I ...
0
votes
3answers
361 views
how to implement timer in C/C++
I want to call a function of the business class after every 2 hours.
I m not getting any way to implement same in C/C++ without using a while loop.
My problem is that i cannot use while(1) as this ...
0
votes
1answer
138 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
1answer
394 views
C++ and CTime & System clock changing
I want to write simple application in C++ using ctime library. I'm getting the actual time and do some calculation in the loop. Very important for me is the fact that user can modify OS clock during ...
0
votes
2answers
191 views
How do you obtain a formatted date and time for the current locale in C?
What C function should I call to obtain a formatted date and time for the locale where the program is being executed?
I'm asking this question because I have run into a problem using the ClamAV ...