|  | 
        
          | 
      
      
        
          | 
| 
Functions |  | static inline hwloc_obj_t
 
 | hwloc_get_root_obj (hwloc_topology_t topology) |  |  | Returns the top-object of the topology-tree. 
 |  | static inline hwloc_obj_t
 
 | hwloc_get_ancestor_obj_by_depth (hwloc_topology_t topology , unsigned depth, hwloc_obj_t obj) |  |  | Returns the ancestor object of objat depthdepth.
 |  | static inline hwloc_obj_t
 
 | hwloc_get_ancestor_obj_by_type (hwloc_topology_t topology , hwloc_obj_type_t type, hwloc_obj_t obj) |  |  | Returns the ancestor object of objwith typetype.
 |  | static inline hwloc_obj_t | hwloc_get_next_obj_by_depth (hwloc_topology_t topology, unsigned depth, hwloc_obj_t prev) |  |  | Returns the next object at depth depth.
 |  | static inline hwloc_obj_t | hwloc_get_next_obj_by_type (hwloc_topology_t topology, hwloc_obj_type_t type, hwloc_obj_t prev) |  |  | Returns the next object of type type.
 |  | static inline hwloc_obj_t
 
 | hwloc_get_pu_obj_by_os_index (hwloc_topology_t topology, unsigned os_index) |  |  | Returns the object of type HWLOC_OBJ_PU with os_index.
 |  | static inline hwloc_obj_t | hwloc_get_next_child (hwloc_topology_t topology , hwloc_obj_t parent, hwloc_obj_t prev) |  |  | Return the next child. 
 |  | static inline hwloc_obj_t
 
 | hwloc_get_common_ancestor_obj (hwloc_topology_t topology , hwloc_obj_t obj1, hwloc_obj_t obj2) |  |  | Returns the common parent object to objects lvl1 and lvl2. 
 |  | static inline int 
 | hwloc_obj_is_in_subtree (hwloc_topology_t topology , hwloc_obj_t obj, hwloc_obj_t subtree_root) |  |  | Returns true if objis inside the subtree beginning withsubtree_root.
 |  
 Detailed DescriptionBe sure to see the figure in Terms and Definitions that shows a complete topology tree, including depths, child/sibling/cousin relationships, and an example of an asymmetric topology where one socket has fewer caches than its peers.  
 Function Documentation
Returns the ancestor object of objat depthdepth. 
Returns the ancestor object of objwith typetype. 
Returns the common parent object to objects lvl1 and lvl2.  
Return the next child.  If previsNULL, return the first child. 
Returns the next object at depth depth. If previsNULL, return the first object at depthdepth. 
Returns the next object of type type. If previsNULL, return the first object at typetype. If there are multiple or no depth for given type, returnNULLand let the caller fallback to hwloc_get_next_obj_by_depth(). 
Returns the object of type HWLOC_OBJ_PU with os_index. Note:The os_indexfield of object should most of the times only be used for pretty-printing purpose. Type HWLOC_OBJ_PU is the only case whereos_indexcould actually be useful, when manually binding to processors. However, using CPU sets to hide this complexity should often be preferred.
 
Returns the top-object of the topology-tree.  Its type is typically HWLOC_OBJ_MACHINE but it could be different for complex topologies. This function replaces the old deprecated hwloc_get_system_obj().  
Returns true if objis inside the subtree beginning withsubtree_root. Note:This function assumes that both objandsubtree_roothave acpuset.
 |  |  |