blob: 3cf6928be1d527e98cf237dd9f1e15f5ae7c2008 (
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-2006 The Botan Project *
*************************************************/
#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);
}
}
|