Changeset e8471b9 in mainline


Ignore:
Timestamp:
2012-07-12T17:01:20Z (12 years ago)
Author:
Adam Hraska <adam.hraska+hos@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
e25eb9e3
Parents:
c14762e
Message:

smpcall: Fixed to compile for amd64.

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.c
     1../../../ia32/src/smp/smp_call.c
  • kernel/test/smpcall/smpcall1.c

    rc14762e re8471b9  
    134134                        if (call_cnt[i] != exp_calls) {
    135135                                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"
    137137                                        " acknowledged.\n", call_cnt[i], exp_calls, i);
    138138                        }
  • kernel/test/synch/workq-test-core.h

    rc14762e re8471b9  
    190190        for (int i = 0; i < WAVES; ++i) {
    191191                if (atomic_get(&call_cnt[i]) == exp_call_cnt) {
    192                         TPRINTF("Ok: %u calls in wave %d, as expected.\n",
     192                        TPRINTF("Ok: %" PRIua " calls in wave %d, as expected.\n",
    193193                                atomic_get(&call_cnt[i]), i);
    194194                } else {
    195195                        success = false;
    196                         TPRINTF("Error: %u calls in wave %d, but %zu expected.\n",
     196                        TPRINTF("Error: %" PRIua " calls in wave %d, but %zu expected.\n",
    197197                                atomic_get(&call_cnt[i]), i, exp_call_cnt);
    198198                }
Note: See TracChangeset for help on using the changeset viewer.