1 /* SPDX-License-Identifier: BSD-3-Clause 2 * Copyright(c) 2010-2014 Intel Corporation 3 */ 4 5 #include <rte_common.h> 6 7 #include "oob_monitor.h" 8 branch_monitor_exit(void)9void branch_monitor_exit(void) 10 { 11 } 12 13 __rte_unused static float apply_policy(__rte_unused int core)14apply_policy(__rte_unused int core) 15 { 16 return 0.0; 17 } 18 19 int add_core_to_monitor(__rte_unused int core)20add_core_to_monitor(__rte_unused int core) 21 { 22 return 0; 23 } 24 25 int remove_core_from_monitor(__rte_unused int core)26remove_core_from_monitor(__rte_unused int core) 27 { 28 return 0; 29 } 30 31 int branch_monitor_init(void)32branch_monitor_init(void) 33 { 34 return 0; 35 } 36 37 void run_branch_monitor(void)38run_branch_monitor(void) 39 { 40 } 41