mirror of
https://github.com/apache/nuttx.git
synced 2026-06-04 23:03:27 +08:00
mm: Remove mempoolinfo_task macro and use mallinfo_task directly
Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
committed by
Petro Karashchenko
parent
d920bfba10
commit
9f4da58c67
@@ -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
|
||||
};
|
||||
|
||||
@@ -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
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user