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.
+2
A:
uint32_t* values = &timevalstruct;
// depends on endianess
uint32_t v1 = values[0];
uint32_t v2 = values[1];
leppie
2010-10-15 11:15:34
+1
A:
As an addition to leppie's answer:
union tvs
{
struct timeval tv;
struct ints {
uint32_t v1;
uint32_t v2;
};
};
tvs t;
t.tv = timevalstruct;
uint32_t v1 = tv.ints.v1;
uint32_t v2 = tv.ints.v2;
if you dont want to deal with pointers.
Yossarian
2010-10-15 11:18:25
A:
See this : http://linux.die.net/man/2/gettimeofday
Can you use tv_sec and tv_usec fields of the timeval structure?
VJo
2010-10-15 11:19:53
yeah, that's what I just decided to do. Thanks a lot guys!!
dasen
2010-10-15 11:25:10
A:
struct timeval tv;
...
uint32_t seconds = tv.tv_sec;
uint32_t micros = tv.tv_usec;
There you go, separated into 32-bit integers.
Jonathan
2010-10-15 17:34:46