Changes in uspace/srv/devman/devtree.c [c3d9aaf5:5e801dc] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/devman/devtree.c
rc3d9aaf5 r5e801dc 1 1 /* 2 * Copyright (c) 2025 Jiri Svoboda3 2 * Copyright (c) 2010 Lenka Trochtova 4 3 * All rights reserved. … … 94 93 } 95 94 96 static consthash_table_ops_t devman_devices_ops = {95 static hash_table_ops_t devman_devices_ops = { 97 96 .hash = devman_devices_hash, 98 97 .key_hash = handle_key_hash, … … 102 101 }; 103 102 104 static consthash_table_ops_t devman_functions_ops = {103 static hash_table_ops_t devman_functions_ops = { 105 104 .hash = devman_functions_hash, 106 105 .key_hash = handle_key_hash, … … 110 109 }; 111 110 112 static consthash_table_ops_t loc_devices_ops = {111 static hash_table_ops_t loc_devices_ops = { 113 112 .hash = loc_functions_hash, 114 113 .key_hash = service_id_key_hash, … … 315 314 } 316 315 317 /** Wait for device tree to stabilize.318 *319 * Blocks until the entire device tree had a chance to finish attaching320 * all devices.321 *322 * @param tree Device tree323 */324 void dev_tree_wait_stable(dev_tree_t *tree)325 {326 dev_wait_stable(tree->root_node->child);327 }328 329 316 /** @} 330 317 */
Note:
See TracChangeset
for help on using the changeset viewer.