2018-03-07 20:57:14 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2018 Intel Corporation. All rights reserved.
|
|
|
|
*
|
2018-05-26 01:49:13 +08:00
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
2018-03-07 20:57:14 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef DUMP_H
|
|
|
|
#define DUMP_H
|
|
|
|
|
2018-05-23 10:33:32 +08:00
|
|
|
struct intr_excp_ctx;
|
2018-03-07 20:57:14 +08:00
|
|
|
|
2018-10-23 11:45:29 +08:00
|
|
|
void dump_intr_excp_frame(const struct intr_excp_ctx *ctx);
|
2018-07-04 10:37:43 +08:00
|
|
|
void dump_exception(struct intr_excp_ctx *ctx, uint16_t pcpu_id);
|
2018-03-07 20:57:14 +08:00
|
|
|
|
|
|
|
#endif /* DUMP_H */
|