Due to test breakage. This reverts commit43a4491043, reversing changes made to5dcf1ab71a.
17 lines
219 B
C++
17 lines
219 B
C++
/*
|
|
* Copyright (C) 2015 Cloudius Systems, Ltd.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <chrono>
|
|
|
|
namespace runtime {
|
|
|
|
void init_uptime();
|
|
|
|
/// Returns the uptime of the system.
|
|
std::chrono::steady_clock::duration get_uptime();
|
|
|
|
}
|