Changeset 0db0df2 in mainline for kernel/genarch/src/mm
- Timestamp:
- 2025-04-07T17:53:53Z (3 months ago)
- Branches:
- master
- Children:
- 45226285, 93de384
- Parents:
- 8f8818ac
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2025-04-07 16:41:57)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2025-04-07 17:53:53)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/genarch/src/mm/page_ht.c
r8f8818ac r0db0df2 55 55 static size_t ht_hash(const ht_link_t *); 56 56 static size_t ht_key_hash(const void *); 57 static bool ht_key_equal(const void *, const ht_link_t *);57 static bool ht_key_equal(const void *, size_t, const ht_link_t *); 58 58 static void ht_remove_callback(ht_link_t *); 59 59 … … 119 119 120 120 /** Return true if the key is equal to the item's lookup key. */ 121 bool ht_key_equal(const void *arg, const ht_link_t *item)121 bool ht_key_equal(const void *arg, size_t hash, const ht_link_t *item) 122 122 { 123 123 const uintptr_t *key = arg;
Note:
See TracChangeset
for help on using the changeset viewer.