Fix typo in previous patch: should use struct mallinfo2.
PR gold/26585 * main.cc (main): Fix typo in previous patch.
This commit is contained in:
parent
9331846e44
commit
cc1849716f
@ -1,8 +1,14 @@
|
||||
2021-03-19 Duncan Simpson <dr.duncan.p.simpson@gmail.com>
|
||||
2021-03-19 Cary Coutant <ccoutant@gmail.com>
|
||||
|
||||
PR gold/26585
|
||||
* main.cc (main): Fix typo in previous patch.
|
||||
|
||||
2021-03-19 Duncan Simpson <dr.duncan.p.simpson@gmail.com>
|
||||
|
||||
PR gold/26585
|
||||
* configure.ac: Add check for mallinfo2.
|
||||
* configure: Regenerate.
|
||||
* config.in: Regenerate from previous commit.
|
||||
* main.cc (main): Use mallinfo2 if available.
|
||||
|
||||
2021-03-19 Cary Coutant <ccoutant@gmail.com>
|
||||
|
@ -291,7 +291,7 @@ main(int argc, char** argv)
|
||||
elapsed.wall / 1000, (elapsed.wall % 1000) * 1000);
|
||||
|
||||
#if defined(HAVE_MALLINFO2)
|
||||
struct mallinfo m = mallinfo2();
|
||||
struct mallinfo2 m = mallinfo2();
|
||||
fprintf(stderr, _("%s: total space allocated by malloc: %lld bytes\n"),
|
||||
program_name, static_cast<long long>(m.arena));
|
||||
#elif defined(HAVE_MALLINFO)
|
||||
|
Loading…
Reference in New Issue
Block a user