mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-11-14 02:00:27 +00:00
Tracked-On: #8805 Signed-off-by: Fei Li <fei1.li@intel.com> Acked-by: Wang, Yu1 <yu1.wang@intel.com>
16 lines
305 B
C
16 lines
305 B
C
/*
|
|
* Copyright (C) 2018-2022 Intel Corporation.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef DUMP_H
|
|
#define DUMP_H
|
|
|
|
struct intr_excp_ctx;
|
|
|
|
void dump_intr_excp_frame(const struct intr_excp_ctx *ctx);
|
|
void dump_exception(const struct intr_excp_ctx *ctx, uint16_t pcpu_id);
|
|
|
|
#endif /* DUMP_H */
|