summaryrefslogtreecommitdiff
path: root/kernel/sched.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/sched.c')
-rw-r--r--kernel/sched.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/kernel/sched.c b/kernel/sched.c
index f0b79fc..3e25de0 100644
--- a/kernel/sched.c
+++ b/kernel/sched.c
@@ -57,19 +57,19 @@ void userspace_init(void) {
* - stack table (1 page)
*/
p = alloc_physical_pages(totpages);
- printf("Allocating %x pages for userspace process\n", totpages);
+ printk("Allocating %x pages for userspace process\n", totpages);
if(p == NULL) {
- printf("Failed to allocate memory for userspace!\n");
+ printk("Failed to allocate memory for userspace!\n");
return;
}
getpage(pdir, p);
getpage(stackt, p);
getpage(stackp, p);
- printf(" Page directory: 0x%08x\n", (uint32_t) pdir);
- printf(" Stack table: 0x%08x\n", (uint32_t) stackt);
- printf(" Stack page: 0x%08x\n", (uint32_t) stackp);
- printf(" Page tables:\n");
+ printk(" Page directory: 0x%08x\n", (uint32_t) pdir);
+ printk(" Stack table: 0x%08x\n", (uint32_t) stackt);
+ printk(" Stack page: 0x%08x\n", (uint32_t) stackp);
+ printk(" Page tables:\n");
/* populate the page directory */
c = npages;
@@ -78,7 +78,7 @@ void userspace_init(void) {
for(i = 0; i < ntables; i++) {
/* add the table entry to the directory */
getpage(tab, p);
- printf(" 0x%08x\n", (uint32_t) tab);
+ printk(" 0x%08x\n", (uint32_t) tab);
map = map_page(pdir);
((uint32_t*) map)[i + (PGENT / 4)] = (uint32_t) tab | 0x007;