diff options
| author | nodist <kevin.comas.git@gmail.com> | 2026-06-15 15:23:58 -0400 |
|---|---|---|
| committer | nodist <kevin.comas.git@gmail.com> | 2026-06-15 15:23:58 -0400 |
| commit | 47a27b0fd6eb0831a74479883ba0b4c30d226fbe (patch) | |
| tree | a77cb6d6beb89a944131de701b6bb4e96b7e0003 /docs/application/shared.md | |
| parent | 2ec4d95567776f8211cd4588b295415b42876e5c (diff) | |
memory slab as well as pooling
Diffstat (limited to 'docs/application/shared.md')
| -rw-r--r-- | docs/application/shared.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/application/shared.md b/docs/application/shared.md index b666684..bed94d2 100644 --- a/docs/application/shared.md +++ b/docs/application/shared.md @@ -6,10 +6,10 @@ ```c typedef struct _kpl_shared { - KPL_POOL_HEADER(_kpl_shared); - _Atomic bool mutating; - bool mark; + KPL_SLAB_HEADER(_kpl_shared); void *data; kpl_atomic_queue queue; + _Atomic bool mutating; + bool mark; } kpl_shared; ``` |
