mstats.c 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /* Access the statistics maintained by `malloc'.
  2. Copyright 1990, 1991, 1992 Free Software Foundation, Inc.
  3. Written May 1989 by Mike Haertel.
  4. This library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Library General Public License as
  6. published by the Free Software Foundation; either version 2 of the
  7. License, or (at your option) any later version.
  8. This library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Library General Public License for more details.
  12. You should have received a copy of the GNU Library General Public
  13. License along with this library; see the file COPYING.LIB. If
  14. not, write to the Free Software Foundation, Inc., 675 Mass Ave,
  15. Cambridge, MA 02139, USA.
  16. The author may be reached (Email) at the address mike@ai.mit.edu,
  17. or (US mail) as Mike Haertel c/o Free Software Foundation. */
  18. #ifndef _MALLOC_INTERNAL
  19. #define _MALLOC_INTERNAL
  20. #include <malloc.h>
  21. #endif
  22. struct mstats
  23. mstats ()
  24. {
  25. struct mstats result;
  26. result.bytes_total = (char *) (*__morecore) (0) - _heapbase;
  27. result.chunks_used = _chunks_used;
  28. result.bytes_used = _bytes_used;
  29. result.chunks_free = _chunks_free;
  30. result.bytes_free = _bytes_free;
  31. return result;
  32. }