You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
731 B

  1. From 930f9aa8f08759fa739dd6e615ba8b3a1890008d Mon Sep 17 00:00:00 2001
  2. From: Rosen Penev <rosenp@gmail.com>
  3. Date: Mon, 6 May 2019 13:56:13 -0700
  4. Subject: [PATCH] db/malloc: Use posix_memalign instead of deprecated valloc
  5. valloc is not available with uClibc-ng as well as being deprecated, which
  6. causes compilation errors. aligned_alloc is not available before C11 so
  7. used posix_memalign.'
  8. Signed-off-by: Rosen Penev <rosenp@gmail.com>
  9. ---
  10. db/malloc.c | 3 +--
  11. 1 file changed, 1 insertion(+), 2 deletions(-)
  12. --- a/db/malloc.c
  13. +++ b/db/malloc.c
  14. @@ -44,8 +44,7 @@ xmalloc(
  15. {
  16. void *ptr;
  17. - ptr = valloc(size);
  18. - if (ptr)
  19. + if(!posix_memalign(&ptr, sysconf(_SC_PAGESIZE), size))
  20. return ptr;
  21. badmalloc();
  22. /* NOTREACHED */