* Set the root node for a tree. */
| 218 | * Set the root node for a tree. |
| 219 | */ |
| 220 | static __inline void |
| 221 | pctrie_root_store(struct pctrie *ptree, struct pctrie_node *node, |
| 222 | enum pctrie_access access) |
| 223 | { |
| 224 | pctrie_node_store((smr_pctnode_t *)&ptree->pt_root, node, access); |
| 225 | } |
| 226 | |
| 227 | /* |
| 228 | * Returns TRUE if the specified node is a leaf and FALSE otherwise. |
no test coverage detected