HikoGUI
A low latency retained GUI
Loading...
Searching...
No Matches
statistics.hpp
1// Copyright Take Vos 2019-2020.
2// Distributed under the Boost Software License, Version 1.0.
3// (See accompanying file LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt)
4
5#pragma once
6
7#include "system_status.hpp"
8
9#include <thread>
10
11namespace tt {
12
13void statistics_deinit() noexcept;
14
15void statistics_init() noexcept;
16
17inline bool statistics_start()
18{
19 return system_status_start_subsystem(system_status_type::statistics, statistics_init, statistics_deinit);
20}
21
22} // namespace tt