From 05f631aa3a4f398d9a326a6f61d3bd9309dd2d39 Mon Sep 17 00:00:00 2001 From: Meco Man <920369182@qq.com> Date: Tue, 24 Nov 2020 04:17:50 +0800 Subject: [PATCH] =?UTF-8?q?[kernel]=20rt=5Fobject=5Fdelete=E5=87=BD?= =?UTF-8?q?=E6=95=B0=E4=BC=98=E5=8C=96=E9=87=8D=E7=BD=AEobject->type?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit object->type = 0; 改为 object->type = RT_Object_Class_Null; 一个东西,但是提高源码可读性 --- src/object.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/object.c b/src/object.c index 6866d805ca..dc3354f76d 100644 --- a/src/object.c +++ b/src/object.c @@ -485,7 +485,7 @@ void rt_object_delete(rt_object_t object) RT_OBJECT_HOOK_CALL(rt_object_detach_hook, (object)); /* reset object type */ - object->type = 0; + object->type = RT_Object_Class_Null; /* lock interrupt */ temp = rt_hw_interrupt_disable(); -- GitLab