From: kosmirror <kos...@us...> - 2025-08-05 05:28:31
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "A pseudo Operating System for the Dreamcast.". The branch, master has been updated via 892ca798ed79edfc507e447755c630e0ea2f9930 (commit) from b4d54adf23275f7682359ab32c7df3349cda0393 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 892ca798ed79edfc507e447755c630e0ea2f9930 Author: QuzarDC <qu...@co...> Date: Tue Aug 5 01:20:45 2025 -0400 thread: Correct missing commas from init/reaper attrs. Additionally provide disable_tls for default to avoid warning. ----------------------------------------------------------------------- Summary of changes: kernel/thread/thread.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kernel/thread/thread.c b/kernel/thread/thread.c index 1a4b20f0..36e57aa1 100644 --- a/kernel/thread/thread.c +++ b/kernel/thread/thread.c @@ -482,7 +482,7 @@ kthread_t *thd_create_ex(const kthread_attr_t *restrict attr, } kthread_t *thd_create(bool detach, void *(*routine)(void *), void *param) { - kthread_attr_t attrs = { detach, 0, NULL, 0, NULL }; + kthread_attr_t attrs = { detach, 0, NULL, 0, NULL, false }; return thd_create_ex(&attrs, routine, param); } @@ -1010,7 +1010,7 @@ int thd_init(void) { .stack_size = sizeof(thd_reaper_stack), .stack_ptr = thd_reaper_stack, .prio = 1, - .label = "[reaper]" + .label = "[reaper]", .disable_tls = true }; @@ -1018,7 +1018,7 @@ int thd_init(void) { .stack_size = sizeof(thd_idle_stack), .stack_ptr = thd_idle_stack, .prio = PRIO_MAX, - .label = "[idle]" + .label = "[idle]", .disable_tls = true }; hooks/post-receive -- A pseudo Operating System for the Dreamcast. |