From 7fd642630ee17f7150c1b881631acbe422b3a26b Mon Sep 17 00:00:00 2001 From: nodist Date: Sat, 13 Jun 2026 19:03:37 -0400 Subject: gnu99 --- docs/application/shared.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/application/shared.md') diff --git a/docs/application/shared.md b/docs/application/shared.md index cbb773e..c5d7e9e 100644 --- a/docs/application/shared.md +++ b/docs/application/shared.md @@ -7,14 +7,14 @@ ```c typedef struct _kpl_shared { KPL_POOL_HEADER(_kpl_shared); - atomic_flag mutating; + _Atomic bool mutating; bool mark; kpl_class class; kpl_task *queue_head, queue_tail; pthread_mutex_t queue_mutex; } kpl_shared; -static atomic_int_fast32_t shared_threads_marked; +static _Atomic int32_t shared_threads_marked; static kpl_shared *shared_pool_sweep, *shared_pool; -- cgit v1.2.3