Changes in uspace/srv/devman/devtree.c [c3d9aaf5:0db0df2] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/devman/devtree.c
rc3d9aaf5 r0db0df2 32 32 */ 33 33 34 #include <errno.h>35 34 #include <io/log.h> 36 35 … … 61 60 } 62 61 63 static bool devman_devices_key_equal(const void *key, const ht_link_t *item)62 static bool devman_devices_key_equal(const void *key, size_t hash, const ht_link_t *item) 64 63 { 65 64 const devman_handle_t *handle = key; … … 68 67 } 69 68 70 static bool devman_functions_key_equal(const void *key, const ht_link_t *item)69 static bool devman_functions_key_equal(const void *key, size_t hash, const ht_link_t *item) 71 70 { 72 71 const devman_handle_t *handle = key; … … 87 86 } 88 87 89 static bool loc_functions_key_equal(const void *key, const ht_link_t *item)88 static bool loc_functions_key_equal(const void *key, size_t hash, const ht_link_t *item) 90 89 { 91 90 const service_id_t *service_id = key;
Note:
See TracChangeset
for help on using the changeset viewer.