From d89c25701381b393839ff38f93f198c4105b2c21 Mon Sep 17 00:00:00 2001 From: johannst Date: Fri, 18 Sep 2020 01:36:00 +0200 Subject: move yielding into Thread base class + make user fn a pure virtual fn and require user to derive from Thread --- lib/matcha.h | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) (limited to 'lib/matcha.h') diff --git a/lib/matcha.h b/lib/matcha.h index 905107f..1506081 100644 --- a/lib/matcha.h +++ b/lib/matcha.h @@ -1,14 +1,18 @@ struct Thread { Thread(const Thread&) = delete; Thread& operator=(const Thread&) = delete; - Thread(void (*fn)()); + Thread(); - static void entry(void* obj); + virtual void threadFn() = 0; + + // use from executor + void yield_to() const; + + protected: + // use in thread + void yield(); - // private: + private: + static void entry(void* obj); void* mStackPtr; - void (*mUserFn)(); }; - -void yield_to(const Thread& t); -void yield_from(Thread& t); -- cgit v1.2.3