The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
69 views

How tm structures (from time.h) works?

I need to create a struct where is set a date. I googled something and i found the tm structure from the library time.h, but I'm having some troubles; I need to print some dates on a log file, here ...
2
votes
1answer
72 views

convert a long number to date , time in C

i am solving spoj problem where current time stamp is sqaured and then divided by 400000007 and the remainder is converted into a dat time below is the technique i used.. remainder = ...
0
votes
1answer
16 views

Counting time or cpu clicks in Cygwin

I can´t count the time of cpu processing in cygwin?Why is that? Do I need a special command.Counting clicks in cpu is done by clock function after including time.h! Still, after i get it done in ...
0
votes
1answer
36 views

Measuring elapsed time

I added following code to measure to learn how many milliseconds program lasted. The problem is I get 1065 Clocks and 1065 Milli seconds. Is it normal that they are equal? Maybe my equation is wrong ...
0
votes
2answers
63 views

How to easily add hours and minutes to gmtime

Is there a predefined method of addition of hours and minutes to the gmtime obtained through time.h? I want to write a program to display time for various countries, so do I have to write the logic ...
1
vote
1answer
63 views

How can you start time counting in c++?

does anybody know of a function or library that starts counting time. Because I'm working on a project that needs to count time for an event to happen. Pseudo code start time if ( seconds % 2 == 0 ) ...
1
vote
3answers
136 views

How to calculate time in c++?

I'm trying to figure out how to calculate time in c++ . I'm making a program where every 3 seconds an event happens for example print out "hello" etc;
-1
votes
3answers
79 views

using randomize() without time.h in C

I was able to run code that uses the randomize function without including the time.h library. is it automatically included with some other libraries i might have already included in my code? Below is ...
0
votes
2answers
155 views

<time.h> / <ctime> are not counting ticks

EDIT: It appears to be functioning now. The code has been updated to show my revisions. Thank you all for your help. I imagine I'm just stupid, but I'm attempting to use ctime to count CPU ticks ...
0
votes
0answers
75 views

time.h / ctime issues with recording real world time

I am currently encountering an issue with the timer in my sorting algorithm, I am using a bubble sort. I require the timer to record the time when my algorithm runs where as at the moment it is ...
1
vote
1answer
61 views

extract part of time.h (localtime)

I want to extract parts from for example tm_sec or tm_min only, as a simple int (not array or string) how is that and possible (if it is) if something I do not need 100% correct time as of I do it ...
0
votes
1answer
36 views

c99 problems with pointers and localtime_r

I am assigning one variable to hold the current time: struct tm *cur = malloc (sizeof (cur)); time_t t = time (NULL); localtime_r (&t, cur); I then print the year. It is correct. Next I enter a ...
0
votes
1answer
58 views

How to get individual kernel timing with clEnqueueTask by sending Kernel_event?

I am trying for task parallelism on a GPU Simulator., instead of EnQueueNDRangeKernel, i'm using EnQueueTask(with 4 diff kernels) with out-of-order-execution-mode-enable.. I have two host pointers, ...
0
votes
1answer
158 views

C++ system file bits/stat.h suddenly breaks with “error: field ‘st_atim’ has incomplete type”

I'm porting over a large, old system that was known to work, onto Ubuntu 64-bit Linux. The system uses FLTK, upgrading to 1.3.2, and I'm using NetBeans. A file includes basic universal /FL/Fl.H as ...
3
votes
3answers
168 views

Does c++ time difference function calculate daylight savings?

If I use the C++ time difference (timediff) function to caculate a the difference between 2 times and the later time is after the time change for day light savings will the returned difference ...
3
votes
3answers
210 views

Ncurses and realtime (implemented in C, unix)

I am trying to implement a game using ncurses in C. I have to show the current time (the time must update each second) and my while loop looks like this while(1) { clk = time(NULL); cur_time ...
1
vote
1answer
74 views

Display POSIX as Calendar Date without gmtime and asctime

I currently have a double containing a POSIX time stamp, and I am successfully using gmtime and asctime to display a calendar date via a time_t struct: time_t input = posix; ...
1
vote
2answers
163 views

C - error storing time_t variable in a struct [time.h]

I'm working on building a process scheduler that follows the FIFO algorithm. I've written all the code and it is working, except for the part of the report. Here an example of how the report is coming ...
0
votes
2answers
69 views

Why would the function 'time' as defined in time.h return NULL?

I've got code that uses the function 'time' and other functions from 'time.h', and 'time' returns NULL every 'time' (haha although not funny, this is expensive on 'time' available for me to focus ...
1
vote
2answers
103 views

time.h clock() broken on OS X?

Am I going mad? I'm running this on x86_64. #include <stdio.h> #include <time.h> #include <unistd.h> int main(int argc, char *argv[]) { printf("Clock: %f\n", clock() / ...
2
votes
3answers
93 views

issues timing the thread functions of pthreads in C

So i am having an issues calculating the elapsed time of the thread function of each thread, I need to be able to find the time total elapsed time for all of the threads but it is not performing this ...
0
votes
2answers
253 views

How to format system time in C?

I'm working on an element of a program that fetches the system time in (24 hour time) hours and minutes, and formats it as HH:MM and stores it in an array. The minutes also have to be incremented by ...
-2
votes
1answer
234 views

How to do you create a calendar program in C? [closed]

For an assignment I need to take input like: "2012-10-27-T-1900-00" And change it to: "Saturday, 27 October 2012 at 1900" Using a tokenizer I was able to split the input to 2012,10,27,T,1900 and ...
1
vote
1answer
177 views

strptime_l returning null

strptime_l is always returning null. I'm doing this in Objective-C. #import <time.h> #import <xlocale.h> /* Later on... */ const char *str = [dateStr UTF8String]; const ...
1
vote
3answers
996 views

What is the difference between clock_t, time_t and struct tm?

What is the difference between clock_t, time_t and struct tm? struct tm looks like this: struct tm{ int tm_sec; int tm_min; int tm_hour; int tm_mday; int tm_mon; int tm_year; int tm_wday; int ...
0
votes
4answers
118 views

Fixed Update Speed

I've been looking through the internet a long time now for an easy solution to a rather easy problem. I have this function running as a thread, and what I want is quite simple. There is plenty of ...
0
votes
1answer
104 views

How can we make gettimeofday function call fail in cygwin 1.7 environment using GDB?

I am looking for a way to fail the function call gettimeofday under cygwin 1.7 environment using GDB. Any one having any idea if we are using it in the below mentioned manner gettimeofday(&tv, ...
1
vote
2answers
279 views

Using clock() function to get tics in iOS

I trying to get the tics inside an iOS application using the C clock() function, but it updates very slowly. It looks like the thread in wich is running (is running inside a UIViewController) is ...
1
vote
4answers
2k views

How do I build (get/download) time.h library?

I am trying to build a project on Linux via Makefile. I keep getting cannot find <sys/time.h> error. I asked around, and I was told that my project doesn't have access to library folders. ...
1
vote
2answers
361 views

Linux kernel add_timer

I am writing a module for kernel. I need to wait a process for a while (for example; 20 seconds) just test something. Process should go on after 20 seconds. In my module_init function I used timer ...
0
votes
0answers
126 views

How to resolve dyld and localtime leaks when profiling a project?

I am profiling my source. I see some allocations that are still alive at exit when I run valgrind. Here is the summary: $ valgrind --track-origins=yes --show-reachable=yes --leak-check=full $BINARY ...
2
votes
1answer
86 views

Unix programming headerfile details

I'm very new to the programming field. Right now I'm trying out some basic programs in Linux. Today I've started off with time functions in time.h, but I'm getting stuck occasionally. I've done the ...
0
votes
1answer
283 views

time.h library not working

I am on the K&R book and on exercise 3-1. I think my "time.h" library is broken. At first I thought my code was wrong but when I checked the solutions to the exercise on the net, they don't work ...
2
votes
1answer
400 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 ...
6
votes
5answers
2k 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 ...
1
vote
4answers
16k views

How to get the current time in milliseconds in C Programming [duplicate]

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
180 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 ...
1
vote
3answers
2k 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: ...
0
votes
2answers
403 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
153 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) ...
2
votes
2answers
184 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>) ...
1
vote
4answers
149 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", ...
0
votes
3answers
3k 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 ( ...
1
vote
3answers
902 views

C milliseconds since midnight [duplicate]

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 ...
2
votes
2answers
611 views

timeval not returning expecting results

I have some code shown below: #include <stdio.h> #include <sys/time.h> typedef struct{ struct timeval timestamp; }teststruct; class TestClass { public: TestClass(); ...
43
votes
3answers
40k 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. ...
2
votes
1answer
127 views

something weird about members of Time.h structure [duplicate]

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 ...
0
votes
2answers
576 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 ...
4
votes
6answers
6k 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??
1
vote
4answers
243 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 2