Top "Gettimeofday" questions

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 …

windows select winapi gettimeofday
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 …

c visual-studio visual-studio-2008 visual-c++ gettimeofday
faster equivalent of gettimeofday

In trying to build a very latency sensitive application, that needs to send 100s of messages a seconds, each message …

c optimization clock gettimeofday
What is the unit of gettimeofday()?

I've a program to calculate the latency of an object in a pub-sub model. I've used the following function for …

c++ c gettimeofday
time vs gettimeofday c ++

The time command returns the time elapsed in execution of a command. If I put a "gettimeofday()" at the start …

c++ time gettimeofday
time() and gettimeofday() return different seconds

On the two systems I've tested (a 32-bit Ubuntu 12.04 server and a 64-bit Ubuntu 13.10 VM), the seconds since the epoch …

c linux time gettimeofday
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 …

c embedded arm gettimeofday
Timeval struct usage

I needed to calculate the time it takes to run a certain function and ran into the following code,record &…

c linux time gettime gettimeofday
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 …

c++ c linux timing gettimeofday
how to get datetime from gettimeofday in C?

how to get datetime from gettimeofday in C? I need convert tv.tv_sec to Hour:Minute:Second xx without …

c gettimeofday