mirror of
https://github.com/matrix-construct/construct
synced 2024-11-16 15:00:51 +01:00
modules/console: Cleanup conformity of output from mem cmd.
This commit is contained in:
parent
0da4dec13c
commit
3adf45ddc0
1 changed files with 4 additions and 4 deletions
|
@ -531,10 +531,10 @@ console_cmd__mem(opt &out, const string_view &line)
|
||||||
};
|
};
|
||||||
|
|
||||||
out << "IRCd thread allocations:" << std::endl
|
out << "IRCd thread allocations:" << std::endl
|
||||||
<< "alloc count ____ " << this_thread.alloc_count << std::endl
|
<< "alloc count: " << this_thread.alloc_count << std::endl
|
||||||
<< "freed count ____ " << this_thread.free_count << std::endl
|
<< "freed count: " << this_thread.free_count << std::endl
|
||||||
<< "alloc bytes ____ " << this_thread.alloc_bytes << std::endl
|
<< "alloc bytes: " << this_thread.alloc_bytes << std::endl
|
||||||
<< "freed bytes ____ " << this_thread.free_bytes << std::endl
|
<< "freed bytes: " << this_thread.free_bytes << std::endl
|
||||||
<< std::endl;
|
<< std::endl;
|
||||||
|
|
||||||
thread_local char buf[1024];
|
thread_local char buf[1024];
|
||||||
|
|
Loading…
Reference in a new issue