summaryrefslogtreecommitdiff
path: root/include/posix/driver/uptime.h
blob: 93711b90491aa3debfa8dd09ec0e1dd9e61ec139 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#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();
};

extern Uptime uptime;

#endif