This is mostly so I can test some Git behavior. It's fine to incorporate, but it's not a particularly useful change in itself.
Change-Id: Ib95ee3079341d30120102ced1d5fb5cabbaadd4f Tested: N/A Signed-off-by: Dan Cross <[email protected]> --- kern/src/env.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kern/src/env.c b/kern/src/env.c index 6d2811a..80c87f5 100644 --- a/kern/src/env.c +++ b/kern/src/env.c @@ -49,8 +49,8 @@ int env_setup_vm(env_t *e) goto env_setup_vm_error_i; if (!(e->procdata = get_cont_pages(LOG2_UP(PROCDATA_NUM_PAGES), 0))) goto env_setup_vm_error_d; - /* Normally we'd 0 the pages here. We handle it in proc_init_proc*. Don't - * start the process without calling those. */ + /* Normally we would 0 the pages here. We handle it in proc_init_proc*. + * Do not start the process without calling those. */ for (int i = 0; i < PROCINFO_NUM_PAGES; i++) { if (page_insert(e->env_pgdir, kva2page((void*)e->procinfo + i * PGSIZE), (void*)(UINFO + i*PGSIZE), PTE_USER_RO) < 0) -- 2.8.0.rc3.226.g39d4020 -- You received this message because you are subscribed to the Google Groups "Akaros" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. For more options, visit https://groups.google.com/d/optout.
