2018-10-23 03:29:21 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2018 int32_tel Corporation. All rights reserved.
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef PROFILING_H
|
|
|
|
#define PROFILING_H
|
|
|
|
|
|
|
|
#ifdef PROFILING_ON
|
|
|
|
#include <profiling_internal.h>
|
2018-11-28 09:08:40 +08:00
|
|
|
#endif
|
2018-10-23 03:29:21 +08:00
|
|
|
|
2018-11-05 13:25:25 +08:00
|
|
|
void profiling_vmenter_handler(struct acrn_vcpu *vcpu);
|
2018-12-13 07:12:42 +08:00
|
|
|
void profiling_pre_vmexit_handler(struct acrn_vcpu *vcpu);
|
|
|
|
void profiling_post_vmexit_handler(struct acrn_vcpu *vcpu);
|
2018-10-23 03:29:21 +08:00
|
|
|
void profiling_setup(void);
|
|
|
|
|
|
|
|
#endif /* PROFILING_H */
|