Changeset 036e97c in mainline for kernel/test/mm/falloc2.c
- Timestamp:
- 2018-09-07T15:52:40Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e3306d04
- Parents:
- e9d2905
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/test/mm/falloc2.c
re9d2905 r036e97c 130 130 } 131 131 132 while (atomic_ get(&thread_count) > 0) {132 while (atomic_load(&thread_count) > 0) { 133 133 TPRINTF("Threads left: %zu\n", 134 atomic_ get(&thread_count));134 atomic_load(&thread_count)); 135 135 thread_sleep(1); 136 136 } 137 137 138 if (atomic_ get(&thread_fail) == 0)138 if (atomic_load(&thread_fail) == 0) 139 139 return NULL; 140 140
Note:
See TracChangeset
for help on using the changeset viewer.