Changeset 205f1add in mainline for uspace/app/top/top.c
- Timestamp:
- 2018-08-23T21:14:56Z (6 years ago)
- Children:
- f33c989e
- Parents:
- e2625b1a
- git-author:
- Jakub Jermar <jakub@…> (2018-08-21 21:58:52)
- git-committer:
- Jakub Jermar <jakub@…> (2018-08-23 21:14:56)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/top/top.c
re2625b1a r205f1add 39 39 #include <stdlib.h> 40 40 #include <task.h> 41 #include < sys/time.h>41 #include <time.h> 42 42 #include <errno.h> 43 43 #include <gsort.h> … … 154 154 155 155 /* Get current time */ 156 struct time valtime;157 get timeofday(&time, NULL);156 struct timespec time; 157 getrealtime(&time); 158 158 159 159 target->hours = (time.tv_sec % DAY) / HOUR; … … 162 162 163 163 /* Get uptime */ 164 struct time valuptime;164 struct timespec uptime; 165 165 getuptime(&uptime); 166 166
Note:
See TracChangeset
for help on using the changeset viewer.