summaryrefslogtreecommitdiff
path: root/components/Linux/uptime.c
blob: e7afc8e35283ca0f468ea5298ab2801cf18de5ab (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
/* See LICENSE file for copyright and license details. */
#include <errno.h>
#include <stdio.h>
#include <string.h>
#include <sys/sysinfo.h>

#include "../../util.h"

const char *
uptime(void)
{
	int h;
	int m;
	int uptime = 0;
	struct sysinfo info;

	sysinfo(&info);
	uptime = info.uptime;

	h = uptime / 3600;
	m = (uptime - h * 3600) / 60;

	return bprintf("%dh %dm", h, m);
}