xref: /dpdk/examples/vm_power_manager/oob_monitor_nop.c (revision d3c9274f76826d4e88eb178f1f353b983c2c11e6)
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)9 void branch_monitor_exit(void)
10 {
11 }
12 
13 __rte_unused static float
apply_policy(__rte_unused int core)14 apply_policy(__rte_unused int core)
15 {
16 	return 0.0;
17 }
18 
19 int
add_core_to_monitor(__rte_unused int core)20 add_core_to_monitor(__rte_unused int core)
21 {
22 	return 0;
23 }
24 
25 int
remove_core_from_monitor(__rte_unused int core)26 remove_core_from_monitor(__rte_unused int core)
27 {
28 	return 0;
29 }
30 
31 int
branch_monitor_init(void)32 branch_monitor_init(void)
33 {
34 	return 0;
35 }
36 
37 void
run_branch_monitor(void)38 run_branch_monitor(void)
39 {
40 }
41