/
phprus
/
github_dpdk
Обзор
Документация
Войти
/
phprus
/
github_dpdk
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
lib/graph/meson.build
30 строк
798 B
Nitin Saxena
graph: add feature enable/disable API
10 июн 2025, 19:05
10 июн 2025, 19:05
977b265
Код
Авторство
О чём код?
# SPDX-License-Identifier: BSD-3-Clause # Copyright(C) 2020 Marvell International Ltd. if is_windows build = false reason = 'not supported on Windows' subdir_done() endif sources = files( 'node.c', 'graph.c', 'graph_ops.c', 'graph_debug.c', 'graph_stats.c', 'graph_populate.c', 'graph_pcap.c', 'rte_graph_worker.c', 'rte_graph_model_mcore_dispatch.c', 'graph_feature_arc.c', ) headers = files('rte_graph.h', 'rte_graph_worker.h') headers += files('rte_graph_feature_arc.h', 'rte_graph_feature_arc_worker.h') indirect_headers += files( 'rte_graph_model_mcore_dispatch.h', 'rte_graph_model_rtc.h', 'rte_graph_worker_common.h', ) deps += ['eal', 'pcapng', 'mempool', 'ring', 'rcu']