Skip to content

Commit

Permalink
Merge pull request #15 from shyeonn/master
Browse files Browse the repository at this point in the history
Fix typo
  • Loading branch information
sjchoi1 authored Apr 5, 2023
2 parents 703396f + 6b6d997 commit d5fbab2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion threads/thread.c
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@ schedule (void) {
thread. This must happen late so that thread_exit() doesn't
pull out the rug under itself.
We just queuing the page free reqeust here because the page is
currently used bye the stack.
currently used by the stack.
The real destruction logic will be called at the beginning of the
schedule(). */
if (curr && curr->status == THREAD_DYING && curr != initial_thread) {
Expand Down

0 comments on commit d5fbab2

Please sign in to comment.