aboutsummaryrefslogtreecommitdiffstats
path: root/src/timer/gettimeofday/tm_unix.cpp
blob: 654297753a867c1147338cdfe37b852359865afe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*************************************************
* Unix Timer Source File                         *
* (C) 1999-2007 Jack Lloyd                       *
*************************************************/

#include <botan/tm_unix.h>
#include <botan/util.h>
#include <sys/time.h>

namespace Botan {

/*************************************************
* Get the timestamp                              *
*************************************************/
u64bit Unix_Timer::clock() const
   {
   struct ::timeval tv;
   ::gettimeofday(&tv, 0);
   return combine_timers(tv.tv_sec, tv.tv_usec, 1000000);
   }

}