diff --git a/userprog/process.c b/userprog/process.c index 0065486ead2325a70dd181a5ec4696cd079dbf10..1f6f72a73c1c984ecdca3ed54da0f8bca28e4a27 100644 --- a/userprog/process.c +++ b/userprog/process.c @@ -37,9 +37,7 @@ process_execute (const char *file_name) if (fn_copy == NULL) return TID_ERROR; strlcpy (fn_copy, file_name, PGSIZE); - //Start of my shit - //End of my shit /* Create a new thread to execute FILE_NAME. */ tid = thread_create (file_name, PRI_DEFAULT, start_process, fn_copy);