mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-05-04 22:47:00 +00:00
seperate the function definitions into debug/release directories to better distinguish debug/release libraries Tracked-On: #861 Signed-off-by: Shiqing Gao <shiqing.gao@intel.com> Acked-by: Eddie Dong <eddie.dong@intel.com>
19 lines
406 B
C
19 lines
406 B
C
/*
|
|
* 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>
|
|
#endif
|
|
|
|
void profiling_vmenter_handler(struct acrn_vcpu *vcpu);
|
|
void profiling_vmexit_handler(struct acrn_vcpu *vcpu, uint64_t exit_reason);
|
|
void profiling_setup(void);
|
|
|
|
#endif /* PROFILING_H */
|