Tagged Questions
The time.h tag has no wiki summary.
8
votes
3answers
11k views
Ubuntu Linux C++ error: undefined reference to 'clock_gettime' and 'clock_settime'
I am pretty new to Ubuntu, but I can't seem to get this to work. It works fine on my school computers and I don't know what I am not doing. I have checked usr/include and time.h is there just fine. ...
8
votes
8answers
10k views
Time difference in C++
Does anyone know how to calculate time difference in C++ in miliseconds?
I used difftime (time.h) but it's not enough precision for what I'm trying to measure.
3
votes
4answers
95 views
Constants not loaded by compiler
I started studying POSIX timers, so I started also doing some exercises, but I immediately had some problems with the compiler.
When compiling this code, I get some strange messages about macros like ...
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
2answers
57 views
How can adding a header increase portability? (sys/time.h)
I just noticed this line in the getrusage man page:
Including <sys/time.h> is not required these days, but increases portability. (Indeed, struct timeval is defined in <sys/time.h>)
...
2
votes
2answers
330 views
Problem with timeval
I have some code shown below:
#include <stdio.h>
#include <sys/time.h>
typedef struct{
struct timeval timestamp;
}teststruct;
class TestClass {
public:
TestClass();
...
2
votes
1answer
99 views
something weird about members of Time.h structure [closed]
Possible Duplicate:
Why does tm_sec range from 0-60 instead of 0-59 in time.h?
So when I looked up <time.h> for some info, I ran across this. I'm assuming the numbers in the square ...
2
votes
5answers
966 views
How can i get UTCTime in milisecond since January 1, 1970 in c language
Is there any way to get miliseconds and its fraction part from 1970 using time.h in c language??
2
votes
4answers
2k views
How do I get milliseconds since midnight UTC in C?
The time function in time.h gives milliseconds since the epoch.
2
votes
1answer
191 views
64 Bit Error?
relocation truncated to fit: R_X86_64_PC32 against `.bss'
I'm getting this linker error in g++ when compiling:
The rest of the code isn't material since this definition breaks my compilation. The ...
1
vote
3answers
130 views
tm t1 has incomplete type and cannot be defined
I have to write a program that calls sleep(60) in an infinite loop. Every five times through the loop I have to fetch the current time-of-day and print the tm_sec field.
This is what I have written:
...
1
vote
4answers
65 views
Adding Date in a file - C
I'm coding a network game in C. I 've written scores in a file. I also wanted to add the date of the day.
Here is the file's structure : Date Name Score
and the code :
ScoreFile = fopen("scores.txt", ...
1
vote
3answers
460 views
C milliseconds since midnight [closed]
Possible Duplicate:
How do I get milliseconds since midnight UTC in C?
I'm trying to get the time elapsed in milliseconds between the start of the current day (12:00:00.0000 AM) to the ...
1
vote
4answers
216 views
How to get rid of the warning with time.h in C++?
When I use this
#include<time.h>
//...
int n = time(0);
//...
I get a warning about converting time to int. Is there a way to remove this warning?
1
vote
3answers
1k views
How to decompose unix time in C
This seems like something no one should ever have to do, but I'm working on a kernel module for an embedded system (OpenWRT) in which it seems that time.h does include the timespec and time_t types, ...
0
votes
5answers
95 views
How to get the current time in milliseconds in C Programming [closed]
Possible Duplicate:
How to measure time in milliseconds using ANSI C?
How can I get the Windows system time with millisecond resolution?
We want to calculate the time which a player have ...
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
60 views
nanosleep() never “wakes up” on OS X Lion
I'm using XCode 4.2 in Lion. When I compile my app with the Debug profile (Pressing Apple+R to run it), then when I call nanosleep it never returns from that function. Ever. If I profile the code ...
0
votes
2answers
37 views
Order of elements in strptime
I am trying to use strptime(buf, &pattern,&result) to convert char[] containing date into tm structure.
I am using function like this:
if(strptime(buf, &pattern,&result) == NULL)
...
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
2answers
353 views
How to get the fractional part of the seconds in UTCTime using time.h
I want to get the system time including fractional part of the seconds. Is it possible in standard c (ANSI C)?
If not then tell me some libraries for window OS so that I make it possible. In Linux I ...