Files
acrn-hypervisor/hypervisor/include/debug/shell.h
Minggui Cao 25fff0c21a add flag to control vmexit sample in HV bootargs
for vmexit data sampling could affect HV performace profiling,
so set it disabled by default.

add a flag in HV bootargs to control vmexit data sampling.

Tracked-On: #5232
Signed-off-by: Minggui Cao <minggui.cao@intel.com>
2020-08-26 16:55:27 +08:00

17 lines
298 B
C

/*
* Copyright (C) 2018 Intel Corporation. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#ifndef SHELL_H
#define SHELL_H
void shell_init(void);
void shell_kick(void);
void set_vmexit_sample_flag(bool to_enable);
bool is_vmexit_sample_enabled(void);
#endif /* SHELL_H */