summaryrefslogtreecommitdiffstats
path: root/examples/vm_power_manager/oob_monitor_nop.c
blob: 7e7b8bc1495718bc92aa8f85c6dfdd73018eeddc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/* SPDX-License-Identifier: BSD-3-Clause
 * Copyright(c) 2010-2014 Intel Corporation
 */

#include "oob_monitor.h"

void branch_monitor_exit(void)
{
}

__attribute__((unused)) static float
apply_policy(__attribute__((unused)) int core)
{
	return 0.0;
}

int
add_core_to_monitor(__attribute__((unused)) int core)
{
	return 0;
}

int
remove_core_from_monitor(__attribute__((unused)) int core)
{
	return 0;
}

int
branch_monitor_init(void)
{
	return 0;
}

void
run_branch_monitor(void)
{
}