mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-14 18:38:55 +00:00
19 lines
304 B
C
19 lines
304 B
C
|
|
/*
|
||
|
|
* Copyright (c) 2022, ArtInChip Technology Co., Ltd
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
|
*/
|
||
|
|
|
||
|
|
unsigned long g_aicos_irq_state = 0;
|
||
|
|
unsigned int g_aicos_irq_nested_cnt = 0;
|
||
|
|
|
||
|
|
void aicos_irq_enter(void)
|
||
|
|
{
|
||
|
|
g_aicos_irq_nested_cnt++;
|
||
|
|
}
|
||
|
|
|
||
|
|
void aicos_irq_exit(void)
|
||
|
|
{
|
||
|
|
g_aicos_irq_nested_cnt--;
|
||
|
|
}
|