]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man3/malloc_usable_size.3
prctl.2: Clarify the unsupported hardware case of EINVAL
[thirdparty/man-pages.git] / man3 / malloc_usable_size.3
CommitLineData
6978778c
MK
1.\" Copyright (c) 2012 by Michael Kerrisk <mtk.manpages@gmail.com>
2.\"
93015253 3.\" %%%LICENSE_START(VERBATIM)
6978778c
MK
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.
4b72fb64 23.\" %%%LICENSE_END
6978778c 24.\"
4b8c67d9 25.TH MALLOC_USABLE_SIZE 3 2017-09-15 "GNU" "Linux Programmer's Manual"
6978778c
MK
26.SH NAME
27malloc_usable_size \- obtain size of block of memory allocated from heap
28.SH SYNOPSIS
29.B #include <malloc.h>
dbfe9c70 30.PP
6978778c
MK
31.BI "size_t malloc_usable_size (void *" ptr );
32.SH DESCRIPTION
33The
34.BR malloc_usable_size ()
35function returns the number of usable bytes in the block pointed to by
36.IR ptr ,
37a pointer to a block of memory allocated by
38.BR malloc (3)
39or a related function.
40.SH RETURN VALUE
41.BR malloc_usable_size ()
42returns the number of usable bytes in
43the block of allocated memory pointed to by
44.IR ptr .
45If
46.I ptr
47is NULL, 0 is returned.
4b5ef086 48.SH ATTRIBUTES
bb374f15
PH
49For an explanation of the terms used in this section, see
50.BR attributes (7).
51.TS
52allbox;
53lbw20 lb lb
54l l l.
55Interface Attribute Value
56T{
4b5ef086 57.BR malloc_usable_size ()
bb374f15
PH
58T} Thread safety MT-Safe
59.TE
6978778c
MK
60.SH CONFORMING TO
61This function is a GNU extension.
62.SH NOTES
63The value returned by
64.BR malloc_usable_size ()
65may be greater than the requested size of the allocation because
66of alignment and minimum size constraints.
67Although the excess bytes can be overwritten by the application
68without ill effects,
69this is not good programming practice:
70the number of excess bytes in an allocation depends on
71the underlying implementation.
847e0d88 72.PP
6978778c
MK
73The main use of this function is for debugging and introspection.
74.SH SEE ALSO
75.BR malloc (3)