* Test stats feature support. * * @return * 1 if stats enabled, 0 otherwise. */
| 683 | * 1 if stats enabled, 0 otherwise. |
| 684 | */ |
| 685 | static __rte_always_inline int |
| 686 | rte_graph_has_stats_feature(void) |
| 687 | { |
| 688 | #ifdef RTE_LIBRTE_GRAPH_STATS |
| 689 | return RTE_LIBRTE_GRAPH_STATS; |
| 690 | #else |
| 691 | return 0; |
| 692 | #endif |
| 693 | } |
| 694 | |
| 695 | #ifdef __cplusplus |
| 696 | } |
no outgoing calls