From a638cea8bcc8b325e3598d645890c1f14650546c Mon Sep 17 00:00:00 2001 From: Yorick Barbanneau Date: Mon, 15 Nov 2021 01:08:19 +0100 Subject: [PATCH] TD2 I.6 add do_ThreadExit to SC_ThreadExit --- code/userprog/exception.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/code/userprog/exception.cc b/code/userprog/exception.cc index 687f9e2..7dc3e42 100644 --- a/code/userprog/exception.cc +++ b/code/userprog/exception.cc @@ -221,6 +221,7 @@ ExceptionHandler (ExceptionType which) } case SC_ThreadExit: { + do_ThreadExit(); break; } #endif