summaryrefslogtreecommitdiff
path: root/nuttx/libxx
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-08-31 15:27:37 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-08-31 15:27:37 -0600
commit81baf55fd8f4e860516cdfbaa5db2d74b5289bfd (patch)
tree9de6444939105ffd3aed81aede004f6ba0daf616 /nuttx/libxx
parentbdf39bd497954930d2176540594f2e0d046a31af (diff)
downloadpx4-nuttx-81baf55fd8f4e860516cdfbaa5db2d74b5289bfd.tar.gz
px4-nuttx-81baf55fd8f4e860516cdfbaa5db2d74b5289bfd.tar.bz2
px4-nuttx-81baf55fd8f4e860516cdfbaa5db2d74b5289bfd.zip
Rename kmemalign to kmm_memalign and krealloc to kmm_realooc for consistency with other naming
Diffstat (limited to 'nuttx/libxx')
-rw-r--r--nuttx/libxx/libxx_internal.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/libxx/libxx_internal.hxx b/nuttx/libxx/libxx_internal.hxx
index 25ad13c76..1763d4858 100644
--- a/nuttx/libxx/libxx_internal.hxx
+++ b/nuttx/libxx/libxx_internal.hxx
@@ -57,7 +57,7 @@
# include <nuttx/kmalloc.h>
# define lib_malloc(s) kmalloc(s)
# define lib_zalloc(s) kzalloc(s)
-# define lib_realloc(p,s) krealloc(p,s)
+# define lib_realloc(p,s) kmm_realloc(p,s)
# define lib_free(p) kfree(p)
#else
# include <cstdlib>