From 3cd2035fd86dd69c0854bf49615344520ac3f385 Mon Sep 17 00:00:00 2001 From: Terraneo Federico <fede.tft@miosix.org> Date: Wed, 3 May 2023 09:11:33 +0200 Subject: [PATCH] Remove leftover commented out code --- miosix/kernel/sync.h | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/miosix/kernel/sync.h b/miosix/kernel/sync.h index fd3a4971..b8cf4ab4 100644 --- a/miosix/kernel/sync.h +++ b/miosix/kernel/sync.h @@ -385,19 +385,6 @@ private: T& mutex;///< Reference to locked mutex }; -/** - * \internal - * This class is used to make a list of threads that are waiting on a condition - * variable or on a semaphore. It is used by the kernel, and should not be used - * by end users. - */ -// class WaitToken : public IntrusiveListItem -// { -// public: -// WaitToken(Thread *thread) : thread(thread) {} -// Thread *thread; ///<\internal Thread that is waiting -// }; - /** * A condition variable class for thread synchronization, available from * Miosix 1.53.<br> -- GitLab