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