[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Minios-devel] [UNIKRAFT PATCH v3 05/12] lib/uksched: Add support for waiting threads


  • To: minios-devel@xxxxxxxxxxxxx
  • From: Costin Lupu <costin.lupu@xxxxxxxxx>
  • Date: Sun, 10 Mar 2019 22:09:58 +0200
  • Cc: Florian.Schmidt@xxxxxxxxx, simon.kuenzer@xxxxxxxxx, yuri.volchkov@xxxxxxxxx, sharan.santhanam@xxxxxxxxx
  • Delivery-date: Sun, 10 Mar 2019 20:10:18 +0000
  • Ironport-phdr: 9a23:0vRvcx//+KGLqf9uRHKM819IXTAuvvDOBiVQ1KB+0+oUIJqq85mqBkHD//Il1AaPAdyDraodw8Pt8InYEVQa5piAtH1QOLdtbDQizfssogo7HcSeAlf6JvO5JwYzHcBFSUM3tyrjaRsdF8nxfUDdrWOv5jAOBBr/KRB1JuPoEYLOksi7ze+/94DPbwlSmDaxfK55IQmrownWqsQYm5ZpJLwryhvOrHtIeuBWyn1tKFmOgRvy5dq+8YB6/ShItP0v68BPUaPhf6QlVrNYFygpM3o05MLwqxbOSxaE62YGXWUXlhpIBBXF7A3/U5zsvCb2qvZx1S+HNsDwULs6Wymt771zRRHolikJKjA3/mLQhMNygqJWuw6tqwBlzoLIeoyZKOZyc6XAdt0aX2pBWcNRWjRfD4O7dIsPE+sBPeBFpIf7ulsOtQa+DhSrCezzzT9InWP23aw80+g7FQHGwRQgH88VvXvIt9X5Lr8SUf2uw6XS1zXDaOpb1DHg44bLahAsueyAUL1tfcbLykQiFxnJgkuOpYHnJT+Y2PwBv3WU4uZ9T+6iiG4qpxtvrjWhyMogkJTFi40Lxl3C6C532pw6JceiR05+edOkFZxQuDyEOIZuWcMiRn1ouD49yr0bpZ63ZCgKx4ojxx7Yc/GHbY2I7QjiVOaVOzt3mGlldKinhxav6kes0Pf8Vs6s3FZLqCpKjMXMu2gQ2xHc98SLUPhw80e71TqRyQze6PtILE4smareMZEhw7owlpQJsUTEGy/7gFn5jKiNdkU4++io7f7rYrH7pp+EKo95kR3xMr80lsynHOQ3KRICX3Kc+eikzr3s4VX5QKlWjv0xiqTZtZHaJcIapq6+GA9Zy5ss5AihDzi41NQVhn0HLFNeeBKblIjlIV7PL+7+DfulhFSsijhrzejcPrL9GpXNMmTDkLD5cLh9705czxAzzdFF6JJSEL0PPe78Wk/0tNzZExA5Lxe5w+D5B9ph0oMRQ3mADrWHP6PPqVWI/P4gI/GQZI8JvzbwM+Ml5/70gn8jg1Ade7Ol3YANZ3C+AvRmI1+WYXz2jdcECmoKuBQxQ/DuiFKYSjFffWi9X78k7DEhFI2mFZvDRpyqgLGZxye7H5hWZmdAClyWEnfoapuLW/ENaS2MOM9siToEWqa9RI8lzx6hrxX2xKR6LuDM4C0XqYrj1MRp5+3UjRwz9SF0D96c022XUWF0mWcISCM23KB8pkx91EyO0a5mjPNEEdxc/ehGXh0kOp7BnKRGDIX3WwTAeczMRFu4T9GOBTAqUsl309IIJUFnFIaMlBfGigGtGKMUkfSvGYQpuvbX2GPtJsA7z2veyYEqlB8+X8EJL2rw1f03zBTaG4OcyxbRrK2tb6lJhCM=
  • Ironport-sdr: MGNklVvqh9n3HPDfEkA57gcqU4U8TL7p95ISW0GZ4JToOo/xFikh14FYYhC+dYP20Hgn89wE1V dEFEqQVNYFKQ==
  • List-id: Mini-os development list <minios-devel.lists.xenproject.org>

Similar to waiting processes, we introduce support for waiting
threads. This is the conventional way of getting notified by thread
termination events and freeing thread resources upon exit.

A thread can be waited on by other threads. If no such behaviour is
desired then one should set the detached attribute for the thread. This
implies that the thread resources will be automatically freed when the
thread exits.

Signed-off-by: Costin Lupu <costin.lupu@xxxxxxxxx>
---
 lib/uksched/exportsyms.uk       |  2 ++
 lib/uksched/include/uk/thread.h | 10 ++++++++++
 lib/uksched/thread.c            | 32 ++++++++++++++++++++++++++++++++
 lib/ukschedcoop/schedcoop.c     |  6 ++++++
 4 files changed, 50 insertions(+)

diff --git a/lib/uksched/exportsyms.uk b/lib/uksched/exportsyms.uk
index 334c652f..3118383d 100644
--- a/lib/uksched/exportsyms.uk
+++ b/lib/uksched/exportsyms.uk
@@ -11,6 +11,8 @@ uk_sched_thread_sleep
 uk_sched_thread_exit
 uk_thread_init
 uk_thread_fini
+uk_thread_exit
+uk_thread_wait
 uk_thread_detach
 uk_thread_set_prio
 uk_thread_get_prio
diff --git a/lib/uksched/include/uk/thread.h b/lib/uksched/include/uk/thread.h
index 5f3c2501..131268b4 100644
--- a/lib/uksched/include/uk/thread.h
+++ b/lib/uksched/include/uk/thread.h
@@ -37,6 +37,7 @@
 #include <uk/arch/time.h>
 #include <uk/plat/thread.h>
 #include <uk/thread_attr.h>
+#include <uk/wait_types.h>
 #include <uk/list.h>
 #include <uk/essentials.h>
 
@@ -54,6 +55,7 @@ struct uk_thread {
        uint32_t flags;
        __snsec wakeup_time;
        bool detached;
+       struct uk_waitq waiting_threads;
        struct uk_sched *sched;
 #ifdef CONFIG_HAVE_LIBC
        struct _reent reent;
@@ -69,6 +71,10 @@ UK_TAILQ_HEAD(uk_thread_list, struct uk_thread);
        uk_thread_create_attr(name, NULL, function, data)
 #define uk_thread_destroy(thread) \
        uk_sched_thread_destroy(thread->sched, thread)
+void uk_thread_exit(struct uk_thread *thread);
+
+int uk_thread_wait(struct uk_thread *thread);
+int uk_thread_detach(struct uk_thread *thread);
 
 int uk_thread_set_prio(struct uk_thread *thread, prio_t prio);
 int uk_thread_get_prio(const struct uk_thread *thread, prio_t *prio);
@@ -88,11 +94,15 @@ struct uk_thread *uk_thread_current(void)
 }
 
 #define RUNNABLE_FLAG   0x00000001
+#define EXITED_FLAG     0x00000002
 
 #define is_runnable(_thread)    ((_thread)->flags &   RUNNABLE_FLAG)
 #define set_runnable(_thread)   ((_thread)->flags |=  RUNNABLE_FLAG)
 #define clear_runnable(_thread) ((_thread)->flags &= ~RUNNABLE_FLAG)
 
+#define is_exited(_thread)      ((_thread)->flags &   EXITED_FLAG)
+#define set_exited(_thread)     ((_thread)->flags |=  EXITED_FLAG)
+
 int uk_thread_init(struct uk_thread *thread,
                struct ukplat_ctx_callbacks *cbs, struct uk_alloc *allocator,
                const char *name, void *stack,
diff --git a/lib/uksched/thread.c b/lib/uksched/thread.c
index aeeaff17..8602402a 100644
--- a/lib/uksched/thread.c
+++ b/lib/uksched/thread.c
@@ -35,6 +35,7 @@
 #include <uk/plat/time.h>
 #include <uk/thread.h>
 #include <uk/sched.h>
+#include <uk/wait.h>
 #include <uk/print.h>
 #include <uk/assert.h>
 
@@ -87,6 +88,7 @@ int uk_thread_init(struct uk_thread *thread,
        thread->flags = 0;
        thread->wakeup_time = 0LL;
        thread->detached = false;
+       uk_waitq_init(&thread->waiting_threads);
 
 #ifdef CONFIG_HAVE_LIBC
        //TODO _REENT_INIT_PTR(&thread->reent);
@@ -131,6 +133,36 @@ void uk_thread_wake(struct uk_thread *thread)
        set_runnable(thread);
 }
 
+void uk_thread_exit(struct uk_thread *thread)
+{
+       UK_ASSERT(thread);
+
+       set_exited(thread);
+
+       if (!thread->detached)
+               uk_waitq_wake_up(&thread->waiting_threads);
+
+       uk_pr_debug("Thread \"%s\" exited.\n", thread->name);
+}
+
+int uk_thread_wait(struct uk_thread *thread)
+{
+       UK_ASSERT(thread);
+
+       /* TODO critical region */
+
+       if (thread->detached)
+               return -1;
+
+       uk_waitq_wait_event(&thread->waiting_threads, is_exited(thread));
+
+       thread->detached = true;
+
+       uk_sched_thread_destroy(thread->sched, thread);
+
+       return 0;
+}
+
 int uk_thread_detach(struct uk_thread *thread)
 {
        UK_ASSERT(thread);
diff --git a/lib/ukschedcoop/schedcoop.c b/lib/ukschedcoop/schedcoop.c
index 6f46d49e..5091c913 100644
--- a/lib/ukschedcoop/schedcoop.c
+++ b/lib/ukschedcoop/schedcoop.c
@@ -124,6 +124,10 @@ static void schedcoop_schedule(struct uk_sched *s)
                uk_sched_thread_switch(s, prev, next);
 
        UK_TAILQ_FOREACH_SAFE(thread, &prv->exited_threads, thread_list, tmp) {
+               if (!thread->detached)
+                       /* someone will eventually wait for it */
+                       continue;
+
                if (thread != prev) {
                        UK_TAILQ_REMOVE(&prv->exited_threads,
                                        thread, thread_list);
@@ -156,6 +160,8 @@ static void schedcoop_thread_remove(struct uk_sched *s, 
struct uk_thread *t)
        UK_TAILQ_REMOVE(&prv->thread_list, t, thread_list);
        clear_runnable(t);
 
+       uk_thread_exit(t);
+
        /* Put onto exited list */
        UK_TAILQ_INSERT_HEAD(&prv->exited_threads, t, thread_list);
 
-- 
2.11.0


_______________________________________________
Minios-devel mailing list
Minios-devel@xxxxxxxxxxxxxxxxxxxx
https://lists.xenproject.org/mailman/listinfo/minios-devel

 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.