Files
RTOS/Kernel/SingleCore/os_priority.c
T
2026-05-19 11:49:22 +08:00

26 lines
520 B
C

#include "os_priority.h"
#include "cpu_clz.h"
#include "os_macros.h"
#include "os_config.h"
#include "os_align.h"
/* ======================================================================================================================== */
/* 私有数据 */
OS_ALIGNED(OS_ALIGN_SIZE)
volatile os_priority_t g_os_priority_table[OS_PRIORITY_TABLE_SIZE];
/* ======================================================================================================================== */
/* 接口方法实现 */