context 2 kernel/defs.h struct context; context 111 kernel/defs.h void swtch(struct context*, struct context*); context 145 kernel/proc.c memset(&p->context, 0, sizeof(p->context)); context 146 kernel/proc.c p->context.ra = (uint64)forkret; context 147 kernel/proc.c p->context.sp = p->kstack + PGSIZE; context 466 kernel/proc.c swtch(&c->context, &p->context); context 506 kernel/proc.c swtch(&p->context, &mycpu()->context); context 24 kernel/proc.h struct context context; // swtch() here to enter scheduler(). context 103 kernel/proc.h struct context context; // swtch() here to run process