Subversion Repositories HelenOS-historic

Compare Revisions

Regard whitespace Rev 1729 → Rev 1712

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