
구현 목표f_name을 통째로 file_name으로 바꿔주고 있다.[[strtok_r]] 를 사용해 토큰별로 쪼개준다 (공백 여러개 있을 때도 처리해야 함)그렇게 쪼개진 토큰을 list에 담아 intr_frame의 register에 세팅해준다.intprocess_exec (void *f_name) { char *file_name = f_name; bool success; /* We cannot use the intr_frame in the thread structure. * This is because when current thread rescheduled, * it stores the execution information to the member. */ struc..