/*- * See the file LICENSE for redistribution information. * * Copyright (c) 2011, 2012 Oracle and/or its affiliates. All rights reserved. */ #include #include #include "htimestampxa.h" void GetTime(HTimestampData *ts) { struct timeval timeNow; (void)gettimeofday(&timeNow, 0); ts->Sec = timeNow.tv_sec; ts->Usec = timeNow.tv_usec; }