Skip to content

Commit

Permalink
mem: f_malloc summary function for mememory degging off mode
Browse files Browse the repository at this point in the history
  • Loading branch information
miconda committed Sep 15, 2015
1 parent de12775 commit 667e181
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion mem/f_malloc.c
Expand Up @@ -948,9 +948,11 @@ void fm_sums(void* qmp)
void fm_sums(void* qmp)
{
struct fm_block* qm;
int memlog;

qm = (struct fm_block*)qmp;
LOG_(DEFAULT_FACILITY, memlog, "fm_sums not available (%p)\n", qm);
memlog=cfg_get(core, core_cfg, memlog);
LOG_(DEFAULT_FACILITY, memlog, "fm_sums: ", "not available (%p)\n", qm);
return;
}
#endif /* DBG_F_MALLOC */
Expand Down

0 comments on commit 667e181

Please sign in to comment.