Files
scylladb/utils/runtime.hh
Calle Wilund 45d07d2744 runtime: expose boot_time
(boot == app start, I did not rename the var).
2015-08-25 09:14:40 +02:00

19 lines
275 B
C++

/*
* Copyright (C) 2015 Cloudius Systems, Ltd.
*/
#pragma once
#include <chrono>
namespace runtime {
void init_uptime();
std::chrono::steady_clock::time_point get_boot_time();
/// Returns the uptime of the system.
std::chrono::steady_clock::duration get_uptime();
}