b7c9842916
Prototype/Implement get set APIs for interrupt handle fields. User won't be able to access any of the interrupt handle fields directly while should use these get/set APIs to access/manipulate them. Internal interrupt header i.e. rte_eal_interrupt.h is rearranged, as APIs defined are moved to rte_interrupts.h and epoll specific definitions are moved to a new header rte_epoll.h. Later in the series rte_eal_interrupt.h will be removed. Signed-off-by: Harman Kalra <hkalra@marvell.com> Acked-by: Ray Kinsella <mdr@ashroe.eu> Acked-by: Dmitry Kozlyuk <dmitry.kozliuk@gmail.com> Signed-off-by: David Marchand <david.marchand@redhat.com> Tested-by: Raslan Darawsheh <rasland@nvidia.com>
57 lines
1.5 KiB
Meson
57 lines
1.5 KiB
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2017 Intel Corporation
|
|
|
|
includes += include_directories('.')
|
|
|
|
cflags += [ '-DABI_VERSION="@0@"'.format(abi_version) ]
|
|
|
|
sources += files(
|
|
'eal_common_bus.c',
|
|
'eal_common_class.c',
|
|
'eal_common_config.c',
|
|
'eal_common_debug.c',
|
|
'eal_common_dev.c',
|
|
'eal_common_devargs.c',
|
|
'eal_common_errno.c',
|
|
'eal_common_fbarray.c',
|
|
'eal_common_hexdump.c',
|
|
'eal_common_interrupts.c',
|
|
'eal_common_launch.c',
|
|
'eal_common_lcore.c',
|
|
'eal_common_log.c',
|
|
'eal_common_mcfg.c',
|
|
'eal_common_memalloc.c',
|
|
'eal_common_memory.c',
|
|
'eal_common_memzone.c',
|
|
'eal_common_options.c',
|
|
'eal_common_string_fns.c',
|
|
'eal_common_tailqs.c',
|
|
'eal_common_thread.c',
|
|
'eal_common_timer.c',
|
|
'eal_common_trace_points.c',
|
|
'eal_common_uuid.c',
|
|
'malloc_elem.c',
|
|
'malloc_heap.c',
|
|
'rte_malloc.c',
|
|
'rte_random.c',
|
|
'rte_reciprocal.c',
|
|
'rte_service.c',
|
|
'rte_version.c',
|
|
)
|
|
if is_linux or is_windows
|
|
sources += files('eal_common_dynmem.c')
|
|
endif
|
|
if not is_windows
|
|
sources += files(
|
|
'eal_common_cpuflags.c',
|
|
'eal_common_hypervisor.c',
|
|
'eal_common_proc.c',
|
|
'eal_common_trace.c',
|
|
'eal_common_trace_ctf.c',
|
|
'eal_common_trace_utils.c',
|
|
'hotplug_mp.c',
|
|
'malloc_mp.c',
|
|
'rte_keepalive.c',
|
|
)
|
|
endif
|