Changeset e8471b9 in mainline
- Timestamp:
- 2012-07-12T17:01:20Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e25eb9e3
- Parents:
- c14762e
- Location:
- kernel
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/amd64/src/smp/smp_call.c
rc14762e re8471b9 1 kernel/arch/ia32/src/smp/smp_call.c1 ../../../ia32/src/smp/smp_call.c -
kernel/test/smpcall/smpcall1.c
rc14762e re8471b9 134 134 if (call_cnt[i] != exp_calls) { 135 135 ok = false; 136 TPRINTF("Error: %zu instead of %zu cpu% u's calls were"136 TPRINTF("Error: %zu instead of %zu cpu%zu's calls were" 137 137 " acknowledged.\n", call_cnt[i], exp_calls, i); 138 138 } -
kernel/test/synch/workq-test-core.h
rc14762e re8471b9 190 190 for (int i = 0; i < WAVES; ++i) { 191 191 if (atomic_get(&call_cnt[i]) == exp_call_cnt) { 192 TPRINTF("Ok: % ucalls in wave %d, as expected.\n",192 TPRINTF("Ok: %" PRIua " calls in wave %d, as expected.\n", 193 193 atomic_get(&call_cnt[i]), i); 194 194 } else { 195 195 success = false; 196 TPRINTF("Error: % ucalls in wave %d, but %zu expected.\n",196 TPRINTF("Error: %" PRIua " calls in wave %d, but %zu expected.\n", 197 197 atomic_get(&call_cnt[i]), i, exp_call_cnt); 198 198 }
Note:
See TracChangeset
for help on using the changeset viewer.