Tagged Questions
The timeval tag has no wiki summary.
3
votes
2answers
2k views
c++ setting timeval members
I have a function which takes two current class level member variables and sets them into a timeval structure, and returns the timeval obj (by value).
I am seeing an issue when setting a class level ...
3
votes
2answers
2k views
How do I compare two timestamps in C?
I'm writing a socket program that maintains FIFO queues for two input sockets. When deciding which queue to service, the program pulls the most recent time-stamp from each queue.
I need a reliable ...
2
votes
2answers
328 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
2answers
515 views
convert month/day/year/time to timeval in C/C++
In C/C++, suppose I have the following values:
int year = 2010;
int month = 6;
int day = 15;
int hour = 14;
int minute = 52;
int seconds = 34;
int microseconds = 141231;
What's the easiest way to ...
2
votes
3answers
1k views
Get time_t / timeval corresponding to ( local_timezone ) midnight on a given date
Given a time_t or struct timeval, how do I get the timeval or time_t of midnight EST/EDT ( local timezone ) on that day ?
As in assuming local timezone is EST/EDT, given a time_t corresponding to say ...
2
votes
3answers
196 views
Is there a benefit in using unsigned long for timeval members?
I noticed some programmers use unsigned long for tv_sec and tv_usec [when they copy them or operate with them] of timeval while they are defined as simply long.
Though it does make me wonder why ...
1
vote
1answer
804 views
Is there a standard way to convert a struct timeval into a struct timespec?
struct timeval represents and instant in time with two members, tv_sec (seconds) and tv_usec (microseconds). In this representation, tv_usec is not by itself an absolute time it is a sub second offset ...
0
votes
2answers
71 views
Porting time APIs from Linux to Visual Studio 2008
I have an application that I am porting to Microsoft Visual Studio 2008 that builds and runs fine on Linux.
I am having trouble with the time routines, my Linux code looks like this:
#include ...
0
votes
5answers
286 views
Reinitialize timeval struct
How can I reinitialize a timeval struct from time.h?
I recognize that I can reset both of the members of the struct to zero, but is there some other method I am overlooking?
0
votes
4answers
169 views
How do I separately convert a struct timeval into two 32 bit variables?
A struct timeval is 64 bit long. I need, for a project, to convert this long (struct timeval) into two 32 bit chunks, and put each chunk into a different variable. How do I do this?
Thanx in advance.
0
votes
3answers
856 views
timeval to string (converting between the two)
I'm trying to pull the two components out of a timeval struct and place them into strings.
I'm not having much luck with this. I've attempted casting and converting first to a long and then to a ...
0
votes
2answers
157 views
are these msec<->timeval functions correct?
I have a bug in this program, and I keep coming back to these two functions, but they look right to me. Anything wrong here?
long visual_time_get_msec(VisTime *time_)
{
...
0
votes
4answers
2k views
timeval undefined when using windows.h and WIN32_LEAN_AND_MEAN
To avoid conflicts with winsock2.h, I want to wrap my include of windows.h with WIN32_LEAN_AND_MEAN (I undef it after windows.h so as not to interfere with applications that include my headers). Doing ...