Skip to content

Conversation

@Rbb666
Copy link
Member

@Rbb666 Rbb666 commented Sep 1, 2025

拉取/合并请求描述:(PR description)

[

为什么提交这份PR (why to submit this PR)

你的解决方案是什么 (what is your solution)

请提供验证的bsp和config (provide the config and bsp)

  • BSP:
  • .config:
  • action:

]

当前拉取/合并请求的状态 Intent for your PR

必须选择一项 Choose one (Mandatory):

  • 本拉取/合并请求是一个草稿版本 This PR is for a code-review and is intended to get feedback
  • 本拉取/合并请求是一个成熟版本 This PR is mature, and ready to be integrated into the repo

代码质量 Code Quality:

我在这个拉取/合并请求中已经考虑了 As part of this pull request, I've considered the following:

  • 已经仔细查看过代码改动的对比 Already check the difference between PR and old code
  • 代码风格正确,包括缩进空格,命名及其他风格 Style guide is adhered to, including spacing, naming and other styles
  • 没有垃圾代码,代码尽量精简,不包含#if 0代码,不包含已经被注释了的代码 All redundant code is removed and cleaned up
  • 所有变更均有原因及合理的,并且不会影响到其他软件组件代码或BSP All modifications are justified and not affect other components or BSP
  • 对难懂代码均提供对应的注释 I've commented appropriately where code is tricky
  • 代码是高质量的 Code in this PR is of high quality
  • 已经使用formatting 等源码格式化工具确保格式符合RT-Thread代码规范 This PR complies with RT-Thread code specification
  • 如果是新增bsp, 已经添加ci检查到.github/ALL_BSP_COMPILE.json 详细请参考链接BSP自查

@github-actions github-actions bot added the Kernel PR has src relate code label Sep 1, 2025
@github-actions
Copy link

github-actions bot commented Sep 1, 2025

📌 Code Review Assignment

🏷️ Tag: kernel

Reviewers: GorrayLi ReviewSun hamburger-os lianux-mm wdfk-prog xu18838022837

Changed Files (Click to expand)
  • src/thread.c

📊 Current Review Status (Last Updated: 2025-09-03 09:59 CST)

  • GorrayLi Pending Review
  • ReviewSun Pending Review
  • hamburger-os Pending Review
  • lianux-mm Pending Review
  • wdfk-prog Pending Review
  • xu18838022837 Pending Review

📝 Review Instructions

  1. 维护者可以通过单击此处来刷新审查状态: 🔄 刷新状态
    Maintainers can refresh the review status by clicking here: 🔄 Refresh Status

  2. 确认审核通过后评论 LGTM/lgtm
    Comment LGTM/lgtm after confirming approval

  3. PR合并前需至少一位维护者确认
    PR must be confirmed by at least one maintainer before merging

ℹ️ 刷新CI状态操作需要具备仓库写入权限。
ℹ️ Refresh CI status operation requires repository Write permission.

@Rbb666 Rbb666 force-pushed the th_del branch 2 times, most recently from d30aeaf to 1e0e726 Compare September 2, 2025 01:51
@Rbb666 Rbb666 closed this Sep 2, 2025
@Rbb666 Rbb666 reopened this Sep 2, 2025
@Rbb666 Rbb666 requested a review from Copilot September 2, 2025 10:04
Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This PR adds safety checks to prevent duplicate thread deletion and warns about potentially unsafe thread deletion scenarios. The changes aim to improve thread lifecycle management robustness by detecting common programming errors.

  • Added assertion to prevent duplicate deletion of already closed threads
  • Added warning for deletion of active (running/ready) threads that may cause resource leaks
  • Improved thread status checking before deletion operations

Comment on lines 502 to 506
rt_exit_critical_safe(critical_level);
LOG_W("Warning: Deleting active thread [%s] in %s state may cause resource leak",
thread->parent.name,
(thread_status == RT_THREAD_RUNNING) ? "RUNNING" : "READY");
critical_level = rt_enter_critical();
Copy link

Copilot AI Sep 2, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🟠 Major/主要: Critical section violation in warning path / 关键区域违规的警告路径

English: The code exits and re-enters the critical section just to print a warning message. This creates a potential race condition where the thread state could change between the exit and re-entry, making the warning message potentially inaccurate and violating real-time constraints.
中文:代码为了打印警告消息而退出并重新进入关键区域。这会产生潜在的竞争条件,线程状态可能在退出和重新进入之间发生变化,使警告消息可能不准确并违反实时约束。

Example/示例:

/* Move warning outside critical section */
rt_uint8_t thread_status;
rt_bool_t should_warn = RT_FALSE;

critical_level = rt_enter_critical();
thread_status = rt_sched_thread_get_stat(thread);
RT_ASSERT(thread_status != RT_THREAD_CLOSE);

if ((thread_status == RT_THREAD_RUNNING) || (thread_status == RT_THREAD_READY))
{
should_warn = RT_TRUE;
}

error = rt_thread_close(thread);
/* ... rest of critical section ... */
rt_exit_critical_safe(critical_level);

if (should_warn)
{
LOG_W(\"Warning: Deleting active thread [%s] may cause resource leak\",
thread->parent.name);
}

Copilot generated this review using guidance from repository custom instructions.
src/thread.c Outdated
Comment on lines 496 to 497
/* assert thread is not already closed to prevent duplicate deletion */
RT_ASSERT(thread_status != RT_THREAD_CLOSE);
Copy link

Copilot AI Sep 2, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🟡 Minor/次要: Assertion placement in critical section / 关键区域中的断言放置

English: While functionally correct, the assertion occurs within a critical section. In RT-Thread development, it's generally better to perform such checks before entering critical sections to minimize interrupt latency, unless the check itself requires atomic access to thread state.
中文:虽然功能上正确,但断言发生在关键区域内。在RT-Thread开发中,通常最好在进入关键区域之前执行此类检查以最小化中断延迟,除非检查本身需要原子访问线程状态。

Example/示例:

/* Consider moving basic validation outside critical section if possible */
RT_ASSERT(thread != RT_NULL);
critical_level = rt_enter_critical();
thread_status = rt_sched_thread_get_stat(thread);
RT_ASSERT(thread_status != RT_THREAD_CLOSE);

Copilot generated this review using guidance from repository custom instructions.
stat = rt_sched_thread_get_stat(thread);

/* assert thread is not already closed to prevent duplicate deletion */
RT_ASSERT(stat != RT_THREAD_CLOSE);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

下面的 rt_thread_close 里面也检查了这个

@Rbb666 Rbb666 closed this Sep 3, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Kernel PR has src relate code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants