blob: 51224a7d219a28c9cde6d9a1c84b8fedad335b42 (
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 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);
}
}
|