OSDN Git Service

f10c83f23ae8e73bd9c4d67f48dce42ddb89a68c
[linuxjm/LDP_man-pages.git] / original / man3 / malloc_stats.3
1 '\" t
2 .\" Copyright (c) 2012 by Michael Kerrisk <mtk.manpages@gmail.com>
3 .\"
4 .\" Permission is granted to make and distribute verbatim copies of this
5 .\" manual provided the copyright notice and this permission notice are
6 .\" preserved on all copies.
7 .\"
8 .\" Permission is granted to copy and distribute modified versions of this
9 .\" manual under the conditions for verbatim copying, provided that the
10 .\" entire resulting derived work is distributed under the terms of a
11 .\" permission notice identical to this one.
12 .\"
13 .\" Since the Linux kernel and libraries are constantly changing, this
14 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
15 .\" responsibility for errors or omissions, or for damages resulting from
16 .\" the use of the information contained herein.  The author(s) may not
17 .\" have taken the same level of care in the production of this manual,
18 .\" which is licensed free of charge, as they might when working
19 .\" professionally.
20 .\"
21 .\" Formatted or processed versions of this manual, if unaccompanied by
22 .\" the source, must acknowledge the copyright and authors of this work.
23 .\"
24 .TH MALLOC_STATS 3  2012-05-06 "Linux" "Linux Programmer's Manual"
25 .SH NAME
26 malloc_stats \- print memory allocation statistics
27 .SH SYNOPSIS
28 .B #include <malloc.h>
29
30 .B void malloc_stats(void);
31 .SH DESCRIPTION
32 The
33 .BR malloc_stats ()
34 function prints (on standard error) statistics about memory allocated by
35 .BR malloc (3)
36 and related functions.
37 For each arena (allocation area), this function prints
38 the total amount of memory allocated
39 and the total number of bytes consumed by in-use allocations.
40 (These two values correspond to the
41 .I arena
42 and
43 .I uordblks
44 fields retrieved by
45 .BR mallinfo (3).)
46 In addition,
47 the function prints the sum of these two statistics for all arenas,
48 and the maximum number of blocks and bytes that were ever simultaneously
49 allocated using
50 .BR mmap (2).
51 .\" .SH VERSIONS
52 .\" Available already in glibc 2.0, possibly earlier
53 .SH CONFORMING TO
54 This function is a GNU extension.
55 .SH NOTES
56 More detailed information about memory allocations in the main arena
57 can be obtained using
58 .BR mallinfo (3).
59 .SH SEE ALSO
60 .BR mmap (2),
61 .BR mallinfo (3),
62 .BR malloc (3),
63 .BR malloc_info (3),
64 .BR mallopt (3)