Files
scylladb/utils/runtime.hh
Avi Kivity 5f62f7a288 Revert "Merge "Commit log replay" from Calle"
Due to test breakage.

This reverts commit 43a4491043, reversing
changes made to 5dcf1ab71a.
2015-08-27 12:39:08 +03:00

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();
}