Update.
authorUlrich Drepper <drepper@redhat.com>
Fri, 14 Apr 2000 17:44:22 +0000 (17:44 +0000)
committerUlrich Drepper <drepper@redhat.com>
Fri, 14 Apr 2000 17:44:22 +0000 (17:44 +0000)
2000-04-14  Ulrich Drepper  <drepper@redhat.com>

* malloc/Versions [libc] (GLIBC_2.2): Add posix_memalign.
* malloc/malloc.c: Implement posix_memalign for glibc.
* include/stdlib.h: Add prototype for __posix_memalign.
* stdlib/stdlib.h: Add prototype for posix_memalign.

ChangeLog
include/stdlib.h
malloc/Versions
stdlib/stdlib.h

index fed464e..aa72ed5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2000-04-14  Ulrich Drepper  <drepper@redhat.com>
+
+       * malloc/Versions [libc] (GLIBC_2.2): Add posix_memalign.
+       * malloc/malloc.c: Implement posix_memalign for glibc.
+       * include/stdlib.h: Add prototype for __posix_memalign.
+       * stdlib/stdlib.h: Add prototype for posix_memalign.
+
 2000-04-14  Andreas Jaeger  <aj@suse.de>
 
        * sysdeps/generic/madvise.c: Fix typos.
index edca200..1bd7904 100644 (file)
@@ -55,6 +55,8 @@ extern void _quicksort (void *const pbase, size_t total_elems,
 
 extern int __cxa_atexit (void (*func) (void *), void *arg, void *d);
 
+extern int __posix_memalign (void **memptr, size_t alignment, size_t size);
+
 #endif
 #undef __Need_M_And_C
 
index 759a063..98be892 100644 (file)
@@ -51,5 +51,8 @@ libc {
   GLIBC_2.2 {
     # m*
     mcheck_check_all; mcheck_pedantic;
+
+    # p*
+    posix_memalign;
   }
 }
index 604ab64..8401e5d 100644 (file)
@@ -549,6 +549,11 @@ extern void cfree (void *__ptr) __THROW;
 extern void *valloc (size_t __size) __THROW __attribute_malloc__;
 #endif
 
+#ifdef __USE_XOPEN2K
+/* Allocate memiry of SIZE bytes with an alignment of ALIGNMENT.  */
+extern int posix_memalign (void **memptr, size_t alignment, size_t size)
+     __THROW;
+#endif
 
 /* Abort execution and generate a core-dump.  */
 extern void abort (void) __THROW __attribute__ ((__noreturn__));