Subversion Repositories HelenOS

Rev

Rev 68 | Rev 135 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 68 Rev 125
Line 92... Line 92...
92
            printf("cpu%d: not active\n", i);
92
            printf("cpu%d: not active\n", i);
93
    }
93
    }
94
 
94
 
95
#ifdef __SMP__
95
#ifdef __SMP__
96
    if (config.cpu_count > 1) {
96
    if (config.cpu_count > 1) {
97
            /*
97
        /*
98
         * For each CPU, create its load balancing thread.
98
         * For each CPU, create its load balancing thread.
99
         */
99
         */
100
        for (i = 0; i < config.cpu_count; i++) {
100
        for (i = 0; i < config.cpu_count; i++) {
101
 
101
 
102
            if (t = thread_create(kcpulb, NULL, TASK, 0)) {
102
            if (t = thread_create(kcpulb, NULL, TASK, 0)) {