Explorar el Código

Merge pull request #12 from yangjie11/yangjie

modify the thread_sample.c ,delete some annotations
yqiu hace 7 años
padre
commit
f0f59f169b
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      thread_sample.c

+ 2 - 2
thread_sample.c

@@ -51,8 +51,8 @@ static void thread2_entry(void *param)
         rt_kprintf("thread2 count: %d\n", count);
     }
     rt_kprintf("thread2 exit\n");
-    /* 线程2运行结束后也将自动被系统删除
-    (线程控制块和线程栈依然在idle线程中释放) */
+	
+    /* 线程2运行结束后也将自动被系统脱离 */
 }
 
 /* 线程示例 */