1 /* SPDX-License-Identifier: BSD-3-Clause 2 * Copyright(c) 2023 Marvell. 3 */ 4 5 #ifndef APP_GRAPH_H 6 #define APP_GRAPH_H 7 8 #include <cmdline_parse.h> 9 10 int graph_walk_start(void *conf); 11 void graph_stats_print(void); 12 void graph_pcap_config_get(uint8_t *pcap_ena, uint64_t *num_pkts, char **file); 13 uint64_t graph_coremask_get(void); 14 bool graph_status_get(void); 15 16 #endif 17