From 0fb99f02426f8443aa341b3c63bf21430e2510ee Mon Sep 17 00:00:00 2001 From: cccccya <1131578721@qq.com> Date: Sun, 2 Apr 2023 21:45:32 +0800 Subject: [PATCH] Revise the description of rt_thread_resume --- documentation/thread/thread.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/thread/thread.md b/documentation/thread/thread.md index 59372803f2..ab1058d67c 100644 --- a/documentation/thread/thread.md +++ b/documentation/thread/thread.md @@ -389,7 +389,7 @@ The parameters and return values of the thread suspend interface `rt_thread_susp    Functions' context switch is achieved manually. User only needs to understand the role of the interface, which is not recommended. -To resume a thread is to let the suspended thread re-enter the ready state and put the thread into the system's ready queue; if the recovered thread is first in place of the priority list, then the system will start context switching. Thread resuming uses the following function interface: +To resume a thread is to let the suspended thread re-enter the ready state and put the thread into the system's ready queue. Thread resuming uses the following function interface: ```c rt_err_t rt_thread_resume (rt_thread_t thread); -- GitLab