Home | History | Annotate | Download | only in other

Lines Matching full:uptime

0 /* uptime.c - Tell how long the system has been running.
8 USE_UPTIME(NEWTOY(uptime, NULL, TOYFLAG_USR|TOYFLAG_BIN))
10 config UPTIME
11 bool "uptime"
15 usage: uptime
44 // Uptime
45 info.uptime /= 60;
46 minutes = info.uptime%60;
47 info.uptime /= 60;
48 hours = info.uptime%24;
49 days = info.uptime/24;