kernel: more stack for vm
This commit is contained in:
parent
e4fa9802cb
commit
b18224051a
2 changed files with 2 additions and 2 deletions
|
@ -128,7 +128,7 @@ void arch_boot_proc(struct boot_image *ip, struct proc *rp)
|
|||
|
||||
/* exec parameters */
|
||||
execi.stack_high = kinfo.user_sp;
|
||||
execi.stack_size = 32 * 1024; /* not too crazy as it must be preallocated */
|
||||
execi.stack_size = 64 * 1024; /* not too crazy as it must be preallocated */
|
||||
execi.proc_e = ip->endpoint;
|
||||
execi.hdr = (char *) mod->mod_start; /* phys mem direct */
|
||||
execi.filesize = execi.hdr_len = mod->mod_end - mod->mod_start;
|
||||
|
|
|
@ -404,7 +404,7 @@ void arch_boot_proc(struct boot_image *ip, struct proc *rp)
|
|||
|
||||
/* exec parameters */
|
||||
execi.stack_high = kinfo.user_sp;
|
||||
execi.stack_size = 16 * 1024; /* not too crazy as it must be preallocated */
|
||||
execi.stack_size = 64 * 1024; /* not too crazy as it must be preallocated */
|
||||
execi.proc_e = ip->endpoint;
|
||||
execi.hdr = (char *) mod->mod_start; /* phys mem direct */
|
||||
execi.filesize = execi.hdr_len = mod->mod_end - mod->mod_start;
|
||||
|
|
Loading…
Reference in a new issue