From 53e945aa4f2cbdc168e15de88b1ebe31adc5a5de Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Wed, 12 Sep 2012 12:18:51 +0200 Subject: [PATCH] Fix including private signal.h in kthread.h. --- sortix/include/sortix/kernel/kthread.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/sortix/include/sortix/kernel/kthread.h b/sortix/include/sortix/kernel/kthread.h index a808ae2d..cdc9f69f 100644 --- a/sortix/include/sortix/kernel/kthread.h +++ b/sortix/include/sortix/kernel/kthread.h @@ -26,7 +26,6 @@ #define SORTIX_KTHREAD_H #include -#include "../../../signal.h" #define GOT_ACTUAL_KTHREAD @@ -84,7 +83,6 @@ public: { this->mutex = mutex; this->acquired = kthread_mutex_lock_signal(mutex); - ASSERT(acquired || Signal::IsPending()); } ~ScopedLockSignal()