aboutsummaryrefslogtreecommitdiff
path: root/kernel
diff options
context:
space:
mode:
authorsotech117 <michael_foiani@brown.edu>2024-02-11 07:39:22 +0000
committersotech117 <michael_foiani@brown.edu>2024-02-11 07:39:22 +0000
commit336c211561cd3649024e0f6ad56fdf91e896fef9 (patch)
tree50871987ce5a6ac1070054bae9f74015feba52c1 /kernel
parentf16ac7d652fc2991ac4a7dcd97ed17237a393c97 (diff)
fix small compiling error
Diffstat (limited to 'kernel')
-rw-r--r--kernel/proc/kthread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/proc/kthread.c b/kernel/proc/kthread.c
index 5f9917f..5f707c3 100644
--- a/kernel/proc/kthread.c
+++ b/kernel/proc/kthread.c
@@ -159,7 +159,7 @@ void kthread_cancel(kthread_t *thr, void *retval)
thr->kt_retval = retval;
sched_cancel(thr);
- check_curthr_cancelled();
+ //check_curthr_cancelled();
}
/*