aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2015-10-18 01:27:53 +0200
committerMattias Andrée <maandree@operamail.com>2015-10-18 01:27:53 +0200
commitefc4df116a3723deca03bc75e84b8032877dfc9d (patch)
treeae7041d61334ac1601ed7d7c7114b05334129d55
parentinfo: malloc (diff)
downloadslibc-efc4df116a3723deca03bc75e84b8032877dfc9d.tar.gz
slibc-efc4df116a3723deca03bc75e84b8032877dfc9d.tar.bz2
slibc-efc4df116a3723deca03bc75e84b8032877dfc9d.tar.xz
m info
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
-rw-r--r--doc/info/chap/memory-allocation.texinfo10
1 files changed, 9 insertions, 1 deletions
diff --git a/doc/info/chap/memory-allocation.texinfo b/doc/info/chap/memory-allocation.texinfo
index 74af0d5..3a07824 100644
--- a/doc/info/chap/memory-allocation.texinfo
+++ b/doc/info/chap/memory-allocation.texinfo
@@ -251,6 +251,7 @@ violation, also known as segmentation fault.} signal.
@menu
* The alloca function:: Dynamically allocate automatically freed memory.
* Basic memory allocation:: Basic functions for dynamic memory allocation.
+* Aligned memory allocation:: Dynamic memory allocation with alignment.
* Resizing memory allocations:: How to resize memory allocations.
* Efficient stack-based allocations:: Improving the performance using constrained allocation methods.
* Resizing the data segment:: How to change the size of the heap.
@@ -476,12 +477,19 @@ function @code{free}.
@code{malloc_usable_size(malloc(n))} returns
@code{n} (and allocates memory in the process.)
-This function is a GNU extension and requires
+This function is a @sc{GNU} extension and requires
@code{_GNU_SOURCE}.
@end table
+@node Aligned memory allocation
+@section Aligned memory allocation
+
+TODO
+
+
+
@node Resizing memory allocations
@section Resizing memory allocations