浏览代码

fixed parameters fro mempool_simple_init

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@570 bbd45198-f89e-11dd-88c7-29a3b14d5316
gary.li.wenchao.4 15 年之前
父节点
当前提交
8f431e61bb
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      examples/kernel/memp_simple.c

+ 1 - 1
examples/kernel/memp_simple.c

@@ -74,7 +74,7 @@ int mempool_simple_init()
 	for (i = 0; i < 48; i ++) ptr[i] = RT_NULL;
 
 	/* 初始化内存池对象 */
-	rt_mp_init(&mp, "mp1", &mempool[0], sizeof(mempool), 80);
+	rt_mp_init(&mp, "mp1", &mempool[0], 80, sizeof(mempool), RT_IPC_FLAG_FIFO);
 
 	/* 创建线程1 */
 	tid1 = rt_thread_create("t1",