1 /*
2  * Copyright (C) 2018-2022 Intel Corporation.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef DUMP_H
8 #define DUMP_H
9 
10 struct intr_excp_ctx;
11 
12 void dump_intr_excp_frame(const struct intr_excp_ctx *ctx);
13 void dump_exception(struct intr_excp_ctx *ctx, uint16_t pcpu_id);
14 
15 #endif /* DUMP_H */
16