summaryrefslogtreecommitdiff
path: root/docs/application/map.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/application/map.md')
-rw-r--r--docs/application/map.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/application/map.md b/docs/application/map.md
index 1bc8b40..01ba57f 100644
--- a/docs/application/map.md
+++ b/docs/application/map.md
@@ -11,8 +11,8 @@ typedef struct _kpl_map_bucket {
} kpl_map_bucket;
typedef struct _kpl_map {
- KPL_POOL_HEADER(strcut _kpl_map);
- uint64_t length;
+ KPL_ALLOC_HEADER(struct _kpl_map);
+ uint32_t used_buckets, available_buckets;
kpl_interface *key_interface, *value_interface;
kpl_map_bucket *head, *tail;
kpl_map_bucket *buckets[];