Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
175 views

gettimeofday() always accessible?

I've tried Google, php.net and the php mailinglist's archives, but I can't find what I'm looking for. Maybe it's obvious, or maybe nobody wonders about this... For years, I've used microtime() to get ...
5
votes
3answers
562 views

faster equivalent of gettimeofday

In trying to build a very latency sensitive application, that needs to send 100s of messages a seconds, each message having the time field, we wanted to consider optimizing gettimeofday. Out first ...
3
votes
2answers
212 views

error when passing pointer to struct to function in c

I'm trying to pass pointers to two struct timevals to a function that would output the elapsed time between the two in a C program. However, even if I dereference these pointers, nvcc throws the error ...
2
votes
2answers
82 views

Slow initial timing results using gettimeofday - worse under RHEL6 Server

I am using gettimeofday() to time a simple matrix multiply example, but I'm getting results that are close to twice too long initially. On a RHEL6 Server machine, I'm getting "bad" timing results for ...
2
votes
2answers
846 views

millisecond-accurate benchmarking in C++?

I do not really wish to profile because I was wanting to do many different small benchmarks on different simple functions. For the life of me I cannot find a way to record the amount of milliseconds ...
2
votes
4answers
2k views

Why are gettimeofday() intervals occasionally negative?

I have an experimental library whose performance I'm trying to measure. To do this, I've written the following: struct timeval begin; gettimeofday(&begin, NULL); { // Experiment! } struct ...
2
votes
2answers
6k views

how to use gettimeofday() or something equivalent with Visual Studio C++ 2008?

Could someone please help me to use gettimeofday() function with Visual Studio C++ 2008 on Windows XP? here is a code that I found somewhere on the net: #include < time.h > #include ...
2
votes
4answers
3k views

What's the best alternative library to gettimeofday() in C++?

Is there a more Object Oriented alternative to using gettimeofday() in C++ on linux? I like for instance to be able to write code similar to this: DateTime now = new DateTime; DateTime duration = ...
2
votes
3answers
4k views

What should I use to replace gettimeofday() on Windows?

I'm writing a portable Socket class that supports timeouts for both sending and receiving... To implement these timeouts I'm using select().... But, I sometimes need to know how long I was blocked ...
1
vote
1answer
58 views

C: gettimeofday() produces the same value every run

I'm trying to print the time in ISO-8601 with decisecond precision. YYYY-MM-DDThh:mm:ss.s Here is my code: #include <sys/time.h> #include <time.h> #include <stdlib.h> #include ...
1
vote
0answers
107 views

Is there a safe way to call gettimeofday() from a Xenomai real time thread?

I'm running a Xenomai real time thread that sometimes needs to call gettimeofday(), in order to find out what the current time is according to ptpd. However, doing that appears to be unsafe: in ...
1
vote
1answer
419 views

gettimeofday - explanation of the exact struct timeval fields' meaning

I'm trying to write a simple function in C that would calculate the difference between two moments in nanoseconds. To do this, I thought of using the function gettimeofday, which updates the given ...
1
vote
3answers
221 views

logical time versus physical time in ubuntu linux

i am measuring physical time between two events like this: #include <time.h> #include <sys/time.h> timeval wall_time0; timeval wall_time1; // start of period measurement gettimeofday( ...
1
vote
5answers
498 views

Strange results while measuring delta time on Linux

Update: fixed delta calculations in code, still the issue remains Folks, could you please explain why I'm getting very strange results from time to time using the the following code: #include ...
0
votes
2answers
62 views

How to subtract two gettimeofday instances?

I want to subtract two gettimeofday instances, and present the answer in milliseconds. The idea is: static struct timeval tv; gettimeofday(&tv, NULL); static struct timeval tv2; ...
0
votes
0answers
98 views

gettimeofday not working with or without timezone parameter

gettimeofday(&starttime,NULL); I am trying to use gettimeofday, but facing following error: too many arguments to function 'int gettimeofday(timeval*)' if i remove the NULL for timezone then i ...
0
votes
4answers
159 views

unable to link to gettimeofday on embedded system, elapsed time suggestions?

I am trying to use gettimeofday on an embedded ARM device, however it seems as though I am unable to use it: gnychis@ubuntu:~/Documents/coexisyst/econotag_firmware$ make Building for board: ...
0
votes
1answer
449 views

Accurate Timestamps using gettimeofday and localtime

I'm attempting to monitor system time elapsed across multiple applications and data paths via gettimeoday and localtime. In this example, I want to grab the system time (microsecond percision) right ...
0
votes
1answer
173 views

date uses gettimeofday?

When I do: date system call on freeBSD, does it internally use gettimeofday ? Another que: how do I know where the code of "date" command sitting on the system? Thanks.
0
votes
4answers
542 views

gettimeofday clock_gettime solution to generate unique number

My process runs multiple instances (processes) and multiple threads and all of them write to the same database. As soon as the request is placed, a unique req id is generated for the record to be ...
0
votes
4answers
277 views

Error with -mno-sse flag and gettimeofday() in C

A simple C program which uses gettimeofday() works fine when compiled without any flags ( gcc-4.5.1) but doesn't give output when compiled with the flag -mno-sse. #include <stdio.h> #include ...
0
votes
3answers
202 views

Measuring execution time of selected loops

I want to measure the running times of selected loops in a C program so as to see what percentage of the total time for executing the program (on linux) is spent in these loops. I should be able to ...
0
votes
4answers
759 views

Python clock function on FreeBSD

While testing Pythons time.clock() function on FreeBSD I've noticed it always returns the same value, around 0.156 The time.time() function works properly but I need a something with a slightly ...