From 3549c080593761b6d002f79b31bb8a8534fd9e69 Mon Sep 17 00:00:00 2001 From: NEEN Date: Thu, 10 Sep 2020 18:43:51 +0800 Subject: [PATCH 1/4] =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=96=87=E4=BB=B6=20cont?= =?UTF-8?q?ribute/Reademe-CN.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- contribute/Reademe-CN.md | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100755 contribute/Reademe-CN.md diff --git a/contribute/Reademe-CN.md b/contribute/Reademe-CN.md deleted file mode 100755 index 3f8c939d838..00000000000 --- a/contribute/Reademe-CN.md +++ /dev/null @@ -1,12 +0,0 @@ -# 贡献指南 - -- [贡献指南](贡献指南.md) - - [参与贡献](参与贡献.md) - - [行为准则](行为准则.md) - - [贡献代码](贡献代码.md) - - [贡献流程](贡献流程.md) - - [FAQ](FAQ.md) - - [贡献文档](贡献文档.md) - - [写作规范](写作规范.md) - - [社区沟通与交流](社区沟通与交流.md) - -- Gitee From acbbc160cb0c14d51c2a6ef28a82b8c87443a300 Mon Sep 17 00:00:00 2001 From: NEEN Date: Fri, 11 Sep 2020 16:12:21 +0800 Subject: [PATCH 2/4] =?UTF-8?q?update=20guide/=E7=A4=BA=E4=BE=8B=E5=BC=80?= =?UTF-8?q?=E5=8F=91.md.=20#I1URLQ=20=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- "guide/\347\244\272\344\276\213\345\274\200\345\217\221.md" | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git "a/guide/\347\244\272\344\276\213\345\274\200\345\217\221.md" "b/guide/\347\244\272\344\276\213\345\274\200\345\217\221.md" index ac7f0267fc7..02a8888db1e 100755 --- "a/guide/\347\244\272\344\276\213\345\274\200\345\217\221.md" +++ "b/guide/\347\244\272\344\276\213\345\274\200\345\217\221.md" @@ -1,6 +1,6 @@ # 示例开发 -相机开发基本概念可参考:[相机开发概述](zh-cn_topic_0000001051690589.md)。 +相机开发基本概念可参考:[相机开发概述](../subsystems/相机开发概述.md)。 若开发者想先查看示例效果,可先跳过本节,进入[应用实例](应用实例.md)。如需自定义应用行为,可参考本节描述对示例代码进行修改。 -- Gitee From 5ef01a9ce8a53ee14ab150bacd5cf81dc26f5146 Mon Sep 17 00:00:00 2001 From: NEEN Date: Mon, 22 Feb 2021 14:31:46 +0800 Subject: [PATCH 3/4] =?UTF-8?q?update=20kernel/=E7=BA=BF=E7=A8=8B.md.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Close issue #I381L0. --- "kernel/\347\272\277\347\250\213.md" | 3 --- 1 file changed, 3 deletions(-) diff --git "a/kernel/\347\272\277\347\250\213.md" "b/kernel/\347\272\277\347\250\213.md" index db1fd62c790..0af367a4a5f 100755 --- "a/kernel/\347\272\277\347\250\213.md" +++ "b/kernel/\347\272\277\347\250\213.md" @@ -60,9 +60,6 @@ OpenHarmony内核的线程一共有32个优先级\(0-31\),最高优先级为0 运行中的线程运行结束,线程状态由运行态变为退出态。若未设置分离属性(PTHREAD\_CREATE\_DETACHED)的线程,运行结束后对外呈现的是Exit状态,即退出态。 -- Blocked→Exit: - - 阻塞的线程调用删除接口,线程状态由阻塞态变为退出态。 ## 使用场景 -- Gitee From 3aa0fddeeaa3a89db554409c60a79ed1af06bab8 Mon Sep 17 00:00:00 2001 From: NEEN Date: Mon, 22 Feb 2021 14:32:40 +0800 Subject: [PATCH 4/4] update docs-en/kernel/thread.md. Close issue #I381L0. --- docs-en/kernel/thread.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/docs-en/kernel/thread.md b/docs-en/kernel/thread.md index f7d4008feec..56ac64a13f8 100755 --- a/docs-en/kernel/thread.md +++ b/docs-en/kernel/thread.md @@ -60,9 +60,6 @@ A high-priority thread in a process can preempt the resources of a low-priority When a running thread is terminated, its state changes from **Running** to **Exit**. The thread without the **PTHREAD\_CREATE\_DETACHED** attribute will present the **Exit** state after being terminated. -- Blocked→Exit: - - If an API is called to delete a blocked thread, the thread changes from the **Blocked** state to the **Exit** state. ## When to Use -- Gitee