mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-06 17:43:21 +02:00
use c std version of usecTimestampNow()
This commit is contained in:
parent
68074cb22a
commit
8359ebb82f
1 changed files with 7 additions and 1 deletions
|
@ -12,13 +12,19 @@
|
|||
#include <stdio.h>
|
||||
#include <unistd.h>
|
||||
#include <arpa/inet.h>
|
||||
#include <sys/time.h>
|
||||
|
||||
#include <SharedUtil.h> // for usecTimeStampNow()
|
||||
//#include <SharedUtil.h> // for usecTimestampNow()
|
||||
#include <MovingMinMaxAvg.h> // for MovingMinMaxAvg
|
||||
|
||||
void runSend(const char* addressOption, int port, int gap, int size);
|
||||
void runReceive(const char* addressOption, int port, int gap, int size);
|
||||
|
||||
quint64 usecTimestampNow() {
|
||||
struct timeval tv;
|
||||
gettimeofday(&tv,NULL);
|
||||
return tv.tv_sec*(uint64_t)1000000+tv.tv_usec;
|
||||
}
|
||||
|
||||
int main(int argc, const char * argv[]) {
|
||||
if (argc != 6) {
|
||||
|
|
Loading…
Reference in a new issue