Skip to content

Commit

Permalink
corex: updated memory info fields
Browse files Browse the repository at this point in the history
  • Loading branch information
miconda committed Mar 4, 2022
1 parent f65c98c commit 6695b6f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/modules/corex/corex_rpc_shm.c
Expand Up @@ -71,8 +71,8 @@ static void corex_rpc_shm_stats(rpc_t* rpc, void* c)
rpc->add(c, "{", &th);
rpc->struct_add(th, "jjjjjj",
"total", mi.total_size,
"free", mi.free,
"used", mi.used,
"free", mi.free_size,
"used", mi.used_size,
"real_used", mi.real_used,
"max_used", mi.max_used,
"fragments", mi.total_frags
Expand Down

0 comments on commit 6695b6f

Please sign in to comment.