Changeset 3cfe2b8 in mainline for kernel/generic/src/sysinfo/stats.c
- Timestamp:
- 2018-09-07T16:01:50Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c53e813
- Parents:
- 5f1d850
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/sysinfo/stats.c
r5f1d850 r3cfe2b8 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_load(&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.