1 /* SPDX-License-Identifier: BSD-3-Clause 2 * Copyright(C) 2020 Marvell International Ltd. 3 */ 4 #include <rte_trace_point.h> 5 6 extern int app_dpdk_test_tp_count; 7 RTE_TRACE_POINT( 8 app_dpdk_test_tp, 9 RTE_TRACE_POINT_ARGS(const char *str), 10 rte_trace_point_emit_string(str); 11 app_dpdk_test_tp_count++; 12 ) 13 14 RTE_TRACE_POINT_FP( 15 app_dpdk_test_fp, 16 RTE_TRACE_POINT_ARGS(void), 17 ) 18