summaryrefslogtreecommitdiff
path: root/include/arch/posix/driver/uptime.h
blob: e43b8d62272a29842feeb6fc3bdfd85b26904241 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
 * Copyright 2020 Birte Kristina Friesel
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */
#ifndef UPTIME_H
#define UPTIME_H

#include <stdint.h>

class Uptime {
	private:
		Uptime(const Uptime &copy);

	public:
		Uptime () {}
		uint64_t get_s();
		uint64_t get_us();
		uint64_t get_cycles();
		void tick_s() {};
};

extern Uptime uptime;

#endif