<aside> 💡 이때 자라나는 타이밍은 Page Fault에 의해 자라나는 스택을 구현

</aside>

syscall handler 수정

void
syscall_handler (struct intr_frame *f UNUSED) {
	// TODO: Your implementation goes here.
	
	thread_current()->rsp_stack = f->rsp; // syscall을 호출한 유저 프로그램의 유저 스택 포인터

...
}

vm_try_handle_fault() 구현

<aside> 💡 위와같이 수정되면 vm_try_handle_fault() 에서 체크 후 false 이면 프로세스를 종료 시킨다.

</aside>

vm_stack_growth() 구현