system/Clock: remove obsolete MonotonicClock*() functions

We're using std::chrono::steady_clock now.  No need to duplicate code.
This commit is contained in:
Max Kellermann
2016-12-28 22:24:09 +01:00
parent 4011899846
commit 837134daef
2 changed files with 0 additions and 121 deletions
-23
View File
@@ -22,29 +22,6 @@
#include "Compiler.h"
#include <stdint.h>
/**
* Returns the value of a monotonic clock in seconds.
*/
gcc_pure
unsigned
MonotonicClockS();
/**
* Returns the value of a monotonic clock in milliseconds.
*/
gcc_pure
unsigned
MonotonicClockMS();
/**
* Returns the value of a monotonic clock in microseconds.
*/
gcc_pure
uint64_t
MonotonicClockUS();
#ifdef WIN32
/**