mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-11-20 20:44:32 +00:00
This patch addes the codes to handle timer interrupt. Tracked-On: #8792 Signed-off-by: Haicheng Li <haicheng.li@intel.com> Co-developed-by: Yi Y Sun <yi.y.sun@intel.com> Signed-off-by: Yi Y Sun <yi.y.sun@intel.com> Acked-by: Wang, Yu1 <yu1.wang@intel.com>
16 lines
272 B
C
16 lines
272 B
C
/*
|
|
* Copyright (C) 2023-2024 Intel Corporation. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*
|
|
* Authors:
|
|
* Haicheng Li <haicheng.li@intel.com>
|
|
*/
|
|
|
|
#ifndef __RISCV_TRAP_H__
|
|
#define __RISCV_TRAP_H__
|
|
|
|
typedef void (* irq_handler_t)(void);
|
|
|
|
#endif
|