diff options
Diffstat (limited to 'kernel/include/hashtbl.h')
-rw-r--r-- | kernel/include/hashtbl.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/kernel/include/hashtbl.h b/kernel/include/hashtbl.h index 984aa70..16dfefb 100644 --- a/kernel/include/hashtbl.h +++ b/kernel/include/hashtbl.h @@ -8,6 +8,9 @@ // Supports adding, seeking, removing // When adding a binding to the table, the previous binding for same key (if exists) is removed +// TODO : possibility to allocate the hashtbl structure on any heap +// (currently uses kmalloc/kfree) + struct hashtbl; typedef struct hashtbl hashtbl_t; |