c7c995cc58
Adding rte_node_register() API implementation includes allocating memory for node object, check for duplicate node name and add the allocated node to STAILQ node_list for future use. Signed-off-by: Jerin Jacob <jerinj@marvell.com> Signed-off-by: Kiran Kumar K <kirankumark@marvell.com> Signed-off-by: Pavan Nikhilesh <pbhagavatula@marvell.com> Signed-off-by: Nithin Dabilpuram <ndabilpuram@marvell.com>
10 lines
189 B
Meson
10 lines
189 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(C) 2020 Marvell International Ltd.
|
|
|
|
name = 'graph'
|
|
|
|
sources = files('node.c', 'graph.c')
|
|
headers = files('rte_graph.h')
|
|
|
|
deps += ['eal']
|