Changes in kernel/generic/src/sysinfo/stats.c [7c3fb9b:3cfe2b8] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/sysinfo/stats.c
r7c3fb9b r3cfe2b8 239 239 stats_task->virtmem = get_task_virtmem(task->as); 240 240 stats_task->resmem = get_task_resmem(task->as); 241 stats_task->threads = atomic_ get(&task->refcount);241 stats_task->threads = atomic_load(&task->refcount); 242 242 task_get_accounting(task, &(stats_task->ucycles), 243 243 &(stats_task->kcycles)); … … 764 764 * 765 765 */ 766 static inline load_t load_calc(load_t load, load_t exp, atomic_count_t ready)766 static inline load_t load_calc(load_t load, load_t exp, size_t ready) 767 767 { 768 768 load *= exp; … … 784 784 785 785 while (true) { 786 atomic_count_t ready = atomic_get(&nrdy);786 size_t ready = atomic_load(&nrdy); 787 787 788 788 /* Mutually exclude with get_stats_load() */
Note:
See TracChangeset
for help on using the changeset viewer.