first shell prints $ prompt, though no console input yet

This commit is contained in:
Robert Morris 2019-06-01 05:33:38 -04:00
parent 7fd1f1eb0a
commit 50cbc75102
14 changed files with 408 additions and 164 deletions

2
exec.c
View file

@ -21,8 +21,6 @@ exec(char *path, char **argv)
struct proc *p = myproc();
uint64 oldsz = p->sz;
printf("EXEC\n");
begin_op();
if((ip = namei(path)) == 0){