summaryrefslogtreecommitdiff
path: root/modules/aligned_alloc
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2020-11-04 02:22:33 +0100
committerBruno Haible <bruno@clisp.org>2020-11-04 02:22:33 +0100
commitd8de841b650d9dd635b8ea7a494f3b1cb82bd20d (patch)
tree55712b454abeeb24564fd7c98432fb1572606f5f /modules/aligned_alloc
parent25792758360eb2383ff381d1227c3b928e0cba62 (diff)
downloadgnulib-d8de841b650d9dd635b8ea7a494f3b1cb82bd20d.tar.gz
aligned_alloc: New module.
* lib/stdlib.in.h (aligned_alloc): New declaration. * lib/aligned_alloc.c: New file. * m4/aligned_alloc.m4: New file. * m4/stdlib_h.m4 (gl_STDLIB_H): Test whether aligned_alloc is declared. (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_ALIGNED_ALLOC, HAVE_ALIGNED_ALLOC, REPLACE_ALIGNED_ALLOC. * modules/stdlib (Makefile.am): Substitute GNULIB_ALIGNED_ALLOC, HAVE_ALIGNED_ALLOC, REPLACE_ALIGNED_ALLOC. * modules/aligned_alloc: New file. * tests/test-stdlib-c++.cc (aligned_alloc): Check signature. * doc/posix-functions/aligned_alloc.texi: Mention the new module and the AIX bug.
Diffstat (limited to 'modules/aligned_alloc')
-rw-r--r--modules/aligned_alloc28
1 files changed, 28 insertions, 0 deletions
diff --git a/modules/aligned_alloc b/modules/aligned_alloc
new file mode 100644
index 0000000000..f7757f4a96
--- /dev/null
+++ b/modules/aligned_alloc
@@ -0,0 +1,28 @@
+Description:
+Allocate memory with indefinite extent and specified alignment.
+
+Files:
+lib/aligned_alloc.c
+m4/aligned_alloc.m4
+
+Depends-on:
+extensions
+stdlib
+
+configure.ac:
+gl_FUNC_ALIGNED_ALLOC
+if test $REPLACE_ALIGNED_ALLOC = 1; then
+ AC_LIBOBJ([aligned_alloc])
+fi
+gl_STDLIB_MODULE_INDICATOR([aligned_alloc])
+
+Makefile.am:
+
+Include:
+<stdlib.h>
+
+License:
+LGPLv2+
+
+Maintainer:
+all