summaryrefslogtreecommitdiff
path: root/docs/application/map.md
diff options
context:
space:
mode:
authornodist <kevin.comas.git@gmail.com>2026-06-21 11:51:41 -0400
committernodist <kevin.comas.git@gmail.com>2026-06-21 11:51:41 -0400
commit3a9cf2508dc7341a6d8ff4b8174064600d704994 (patch)
tree63c3196cec86824f237ac82d92aa43c56010e607 /docs/application/map.md
parent900445604bc38ef43d89f0c11f0cc61ce3cb0bce (diff)
update memory objs
Diffstat (limited to 'docs/application/map.md')
-rw-r--r--docs/application/map.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/application/map.md b/docs/application/map.md
index fd412e5..1bc8b40 100644
--- a/docs/application/map.md
+++ b/docs/application/map.md
@@ -6,13 +6,13 @@
```c
typedef struct _kpl_map_bucket {
- KPL_SLAB_HEADER(_kpl_map_bucket);
+ KPL_SLAB_LIST_HEADER(struct _kpl_map_bucket);
kpl_any key, value;
} kpl_map_bucket;
typedef struct _kpl_map {
- KPL_POOL_HEADER(_kpl_map);
- uint32_t length;
+ KPL_POOL_HEADER(strcut _kpl_map);
+ uint64_t length;
kpl_interface *key_interface, *value_interface;
kpl_map_bucket *head, *tail;
kpl_map_bucket *buckets[];