...
 
Commits (2)
    https://gitcode.net/openharmony/kernel_liteos_a/-/commit/73bcf0ec9a0a9b5cc45877582af01da4265cb49b Fix: 修复swtmr只在当前核遍历链表的问题 2023-07-26T09:35:58+08:00 wangchen wangchen240@huawei.com Close #I7NZDT 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/0bc453c2cdcaa4c7a72e65682a4b2c509ac0c31a !1169 修复swtmr遍历不全导致的用例问题 2023-07-26T02:39:24+00:00 openharmony_ci 120357966@qq.com Merge pull request !1169 from wangchen/0726_a
......@@ -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;
}
......