...
 
Commits (2)
    https://gitcode.net/openharmony/kernel_liteos_a/-/commit/82f06317c5bab0a900417c7a394fd410f1c9d2a9 Fix: 挑单swtmr遍历不全导致的用例问题到3.2 2023-07-26T09:54:00+08:00 wangchen wangchen240@huawei.com Close #I7O084 Signed-off-by: <span data-trailer="Signed-off-by:"><a href="mailto:wangchen240@huawei.com" title="wangchen240@huawei.com"></a><a href="javascript:void(0)" class="avatar s16 avatar-inline identicon bg3" style="text-decoration: none">N</a><a href="mailto:wangchen240@huawei.com" title="wangchen240@huawei.com">wangchen</a> &lt;<a href="mailto:wangchen240@huawei.com" title="wangchen240@huawei.com">wangchen240@huawei.com</a>&gt;</span> https://gitcode.net/openharmony/kernel_liteos_a/-/commit/e46f96de4661c2f3c6bc44990a62e8d964be35c6 !1170 挑单swtmr遍历不全导致的用例问题到3.2 2023-07-29T01:55:55+00:00 openharmony_ci 120357966@qq.com Merge pull request !1170 from wangchen/0726_32
......@@ -583,7 +583,7 @@ STATIC INLINE BOOL SwtmrRunqueueFind(SortLinkAttribute *swtmrSortLink, SCHED_TL_
STATIC BOOL SwtmrTimeListFind(SCHED_TL_FIND_FUNC checkFunc, UINTPTR arg)
{
for (UINT16 cpuid = 0; cpuid < LOSCFG_KERNEL_CORE_NUM; cpuid++) {
SortLinkAttribute *swtmrSortLink = &g_swtmrRunqueue[ArchCurrCpuid()].swtmrSortLink;
SortLinkAttribute *swtmrSortLink = &g_swtmrRunqueue[cpuid].swtmrSortLink;
if (SwtmrRunqueueFind(swtmrSortLink, checkFunc, arg)) {
return TRUE;
}
......