[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Minios-devel] [UNIKRAFT PATCH v3 11/12] lib/uksched: Add re-entrancy support for newlib
Re-entrancy in newlib is provided by mapping a _reent attribute to each thread. The attribute encapsulates the global state specific to each thread (e.g. errno, standard IO streams, signal state, etc). Signed-off-by: Costin Lupu <costin.lupu@xxxxxxxxx> --- lib/uksched/include/uk/thread.h | 4 ++-- lib/uksched/thread.c | 28 ++++++++++++++++++++++++++-- 2 files changed, 28 insertions(+), 4 deletions(-) diff --git a/lib/uksched/include/uk/thread.h b/lib/uksched/include/uk/thread.h index f3891c29..f8bdbb5e 100644 --- a/lib/uksched/include/uk/thread.h +++ b/lib/uksched/include/uk/thread.h @@ -30,7 +30,7 @@ #include <stdint.h> #include <stdbool.h> -#ifdef CONFIG_HAVE_LIBC +#ifdef CONFIG_LIBNEWLIBC #include <sys/reent.h> #endif #include <uk/arch/lcpu.h> @@ -57,7 +57,7 @@ struct uk_thread { bool detached; struct uk_waitq waiting_threads; struct uk_sched *sched; -#ifdef CONFIG_HAVE_LIBC +#ifdef CONFIG_LIBNEWLIBC struct _reent reent; #endif }; diff --git a/lib/uksched/thread.c b/lib/uksched/thread.c index e52bb30f..64fe6a2b 100644 --- a/lib/uksched/thread.c +++ b/lib/uksched/thread.c @@ -29,6 +29,7 @@ * Thread definitions * Ported from Mini-OS */ +#include <string.h> #include <stdlib.h> #include <errno.h> #include <uk/plat/config.h> @@ -61,6 +62,29 @@ static void init_sp(unsigned long *sp, char *stack, stack_push(sp, (unsigned long) data); } +#ifdef CONFIG_LIBNEWLIBC +static void reent_init(struct _reent *reent) +{ + _REENT_INIT_PTR(reent); +#if 0 + /* TODO initialize basic signal handling */ + _init_signal_r(myreent); +#endif +} + +struct _reent *__getreent(void) +{ + struct _reent *_reent; + + if (!uk_sched_started(uk_sched_get_default())) + _reent = _impure_ptr; + else + _reent = &uk_thread_current()->reent; + + return _reent; +} +#endif /* CONFIG_LIBNEWLIBC */ + int uk_thread_init(struct uk_thread *thread, struct ukplat_ctx_callbacks *cbs, struct uk_alloc *allocator, const char *name, void *stack, @@ -91,8 +115,8 @@ int uk_thread_init(struct uk_thread *thread, uk_waitq_init(&thread->waiting_threads); thread->sched = NULL; -#ifdef CONFIG_HAVE_LIBC - //TODO _REENT_INIT_PTR(&thread->reent); +#ifdef CONFIG_LIBNEWLIBC + reent_init(&thread->reent); #endif uk_pr_info("Thread \"%s\": pointer: %p, stack: %p\n", -- 2.11.0 _______________________________________________ Minios-devel mailing list Minios-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/minios-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |