浏览代码

注释错误,此处的场景是zone满了,不是空了

Hunter 4 年之前
父节点
当前提交
f7d198463e
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/slab.c

+ 1 - 1
src/slab.c

@@ -540,7 +540,7 @@ void *rt_malloc(rt_size_t size)
     {
         RT_ASSERT(z->z_nfree > 0);
 
-        /* Remove us from the zone_array[] when we become empty */
+        /* Remove us from the zone_array[] when we become full */
         if (--z->z_nfree == 0)
         {
             zone_array[zi] = z->z_next;