2017-09-17 15:45:03 +00:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
2018-03-18 22:26:13 +00:00
|
|
|
#ifdef __linux__
|
2017-09-17 14:18:17 +00:00
|
|
|
#include <sys/sysinfo.h>
|
|
|
|
|
2017-09-24 13:33:01 +00:00
|
|
|
#include "../util.h"
|
2017-09-17 14:18:17 +00:00
|
|
|
|
|
|
|
const char *
|
|
|
|
uptime(void)
|
|
|
|
{
|
|
|
|
struct sysinfo info;
|
|
|
|
int h = 0;
|
|
|
|
int m = 0;
|
|
|
|
|
|
|
|
sysinfo(&info);
|
|
|
|
h = info.uptime / 3600;
|
|
|
|
m = (info.uptime - h * 3600 ) / 60;
|
|
|
|
|
|
|
|
return bprintf("%dh %dm", h, m);
|
|
|
|
}
|
2018-03-18 22:26:13 +00:00
|
|
|
#endif
|