Subversion Repositories HelenOS-historic

Compare Revisions

Regard whitespace Rev 1728 → Rev 1729

/kernel/trunk/generic/src/main/kinit.c
106,10 → 106,8
t->cpu = &cpus[0];
spinlock_unlock(&t->lock);
thread_ready(t);
}
else {
} else
panic("thread_create/kmp\n");
}
thread_join(t);
thread_detach(t);
}
134,8 → 132,8
t->cpu = &cpus[i];
spinlock_unlock(&t->lock);
thread_ready(t);
}
else panic("thread_create/kcpulb\n");
} else
panic("thread_create/kcpulb\n");
 
}
}
197,4 → 195,3
 
/** @}
*/
 
/kernel/trunk/generic/src/main/main.c
326,4 → 326,3
 
/** @}
*/
 
/kernel/trunk/generic/src/main/uinit.c
61,10 → 61,8
uarg.uspace_thread_arg = NULL;
 
free((uspace_arg_t *) arg);
userspace(&uarg);
}
 
/** @}
*/