Endace Measurement Systems Limited
http://www.endace.com
EDM01.05-05r1 DAG 3.6E Card User Manual
Copyright, all rights reserved.
34
Revision 6. 8 August 2005.
6.2 Timestamps
, continued
Description
,continued
Example code
Here is some example code showing how a 64-bit ERF timestamp (erfts)
can be converted into a struct timeval representation (tv).
unsigned long long lts;
struct timeval tv;
lts = erfts;
tv.tv_sec = lts >> 32;
lts = ((lts & 0xffffffffULL) * 1000 * 1000);
lts += (lts & 0x80000000ULL) << 1; /* rounding */
tv.tv_usec = lts >> 32;
if(tv.tv_usec >= 1000000) {
tv.tv_usec -= 1000000;
tv.= 1;
}