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