mm: Remove mempoolinfo_task macro and use mallinfo_task directly

Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
Xiang Xiao
2023-05-28 19:30:37 +08:00
committed by Petro Karashchenko
parent d920bfba10
commit 9f4da58c67
3 changed files with 7 additions and 9 deletions
+2 -2
View File
@@ -390,12 +390,12 @@ int mempool_info(FAR struct mempool_s *pool, FAR struct mempoolinfo_s *info)
* Name: mempool_info_task
****************************************************************************/
struct mempoolinfo_task
struct mallinfo_task
mempool_info_task(FAR struct mempool_s *pool,
FAR const struct mm_memdump_s *dump)
{
irqstate_t flags = spin_lock_irqsave(&pool->lock);
struct mempoolinfo_task info =
struct mallinfo_task info =
{
0, 0
};
+3 -3
View File
@@ -766,13 +766,13 @@ mempool_multiple_mallinfo(FAR struct mempool_multiple_s *mpool)
* Name: mempool_multiple_info_task
****************************************************************************/
struct mempoolinfo_task
struct mallinfo_task
mempool_multiple_info_task(FAR struct mempool_multiple_s *mpool,
FAR const struct mm_memdump_s *dump)
{
int i;
struct mempoolinfo_task info;
struct mempoolinfo_task ret =
struct mallinfo_task info;
struct mallinfo_task ret =
{
0, 0
};