Changeset b8f11baa in mainline


Ignore:
Timestamp:
2007-05-10T10:31:07Z (18 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
ddf1255
Parents:
f3fed18
Message:

run mcall only on active CPUs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/console/cmd.c

    rf3fed18 rb8f11baa  
    646646        count_t i;
    647647        for (i = 0; i < config.cpu_count; i++) {
     648                if (!cpus[i].active)
     649                        continue;
     650               
    648651                thread_t *t;
    649652                if ((t = thread_create((void (*)(void *)) cmd_call0, (void *) argv, TASK, THREAD_FLAG_WIRED, "call0", false))) {
Note: See TracChangeset for help on using the changeset viewer.