src/work/marci/time_measure.h
author alpar
Sun, 22 Feb 2004 12:43:48 +0000
changeset 114 bb07dd5b2d67
child 117 67253d52b284
permissions -rw-r--r--
marci ->hugo
     1 // -*- c++ -*-
     2 #ifndef TIME_MEASURE_H
     3 #define TIME_MEASURE_H
     4 
     5 #include <sys/time.h>
     6 
     7 double currTime() {
     8   timeval tv;
     9   //timezone tz;
    10   gettimeofday(&tv, 0);
    11   return double(tv.tv_sec)+double(tv.tv_usec)/1000000.0;
    12 }
    13 
    14 #endif //TIME_MEASURE_H