Changes in uspace/app/top/top.c [205f1add:62c4297] in mainline
- File:
-
- 1 edited
-
uspace/app/top/top.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/top/top.c
r205f1add r62c4297 39 39 #include <stdlib.h> 40 40 #include <task.h> 41 #include < time.h>41 #include <sys/time.h> 42 42 #include <errno.h> 43 43 #include <gsort.h> … … 154 154 155 155 /* Get current time */ 156 struct time spectime;157 get realtime(&time);156 struct timeval time; 157 gettimeofday(&time, NULL); 158 158 159 159 target->hours = (time.tv_sec % DAY) / HOUR; … … 162 162 163 163 /* Get uptime */ 164 struct time specuptime;164 struct timeval uptime; 165 165 getuptime(&uptime); 166 166
Note:
See TracChangeset
for help on using the changeset viewer.
