xref: /dpdk/examples/vm_power_manager/oob_monitor_nop.c (revision d3c9274f76826d4e88eb178f1f353b983c2c11e6)
14b1a631bSDavid Hunt /* SPDX-License-Identifier: BSD-3-Clause
24b1a631bSDavid Hunt  * Copyright(c) 2010-2014 Intel Corporation
34b1a631bSDavid Hunt  */
44b1a631bSDavid Hunt 
5*d3c9274fSFerruh Yigit #include <rte_common.h>
6*d3c9274fSFerruh Yigit 
74b1a631bSDavid Hunt #include "oob_monitor.h"
84b1a631bSDavid Hunt 
branch_monitor_exit(void)94b1a631bSDavid Hunt void branch_monitor_exit(void)
104b1a631bSDavid Hunt {
114b1a631bSDavid Hunt }
124b1a631bSDavid Hunt 
13f2fc83b4SThomas Monjalon __rte_unused static float
apply_policy(__rte_unused int core)14f2fc83b4SThomas Monjalon apply_policy(__rte_unused int core)
154b1a631bSDavid Hunt {
164b1a631bSDavid Hunt 	return 0.0;
174b1a631bSDavid Hunt }
184b1a631bSDavid Hunt 
194b1a631bSDavid Hunt int
add_core_to_monitor(__rte_unused int core)20f2fc83b4SThomas Monjalon add_core_to_monitor(__rte_unused int core)
214b1a631bSDavid Hunt {
224b1a631bSDavid Hunt 	return 0;
234b1a631bSDavid Hunt }
244b1a631bSDavid Hunt 
254b1a631bSDavid Hunt int
remove_core_from_monitor(__rte_unused int core)26f2fc83b4SThomas Monjalon remove_core_from_monitor(__rte_unused int core)
274b1a631bSDavid Hunt {
284b1a631bSDavid Hunt 	return 0;
294b1a631bSDavid Hunt }
304b1a631bSDavid Hunt 
314b1a631bSDavid Hunt int
branch_monitor_init(void)324b1a631bSDavid Hunt branch_monitor_init(void)
334b1a631bSDavid Hunt {
344b1a631bSDavid Hunt 	return 0;
354b1a631bSDavid Hunt }
364b1a631bSDavid Hunt 
374b1a631bSDavid Hunt void
run_branch_monitor(void)384b1a631bSDavid Hunt run_branch_monitor(void)
394b1a631bSDavid Hunt {
404b1a631bSDavid Hunt }
41