aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2020-05-16 01:21:09 -0700
committerChris Robinson <[email protected]>2020-05-16 01:21:09 -0700
commit0f81fafc6274068003a5d4fcf3a6e33f621d2665 (patch)
tree56e99bc1e8005a1f28fe632023172689056e00c4
parentd086e78a389ac2936e7e19b3eb6bfb5690c27a0a (diff)
Fix some standard calls
-rw-r--r--common/almalloc.cpp16
1 files changed, 7 insertions, 9 deletions
diff --git a/common/almalloc.cpp b/common/almalloc.cpp
index 842fb400..5b679b75 100644
--- a/common/almalloc.cpp
+++ b/common/almalloc.cpp
@@ -12,16 +12,14 @@
#endif
-#define ALIGNED_ALLOC_AVAILABLE (__STDC_VERSION__ >= 201112L || __cplusplus >= 201703L)
-
void *al_malloc(size_t alignment, size_t size)
{
assert((alignment & (alignment-1)) == 0);
alignment = std::max(alignment, alignof(std::max_align_t));
-#if ALIGNED_ALLOC_AVAILABLE
+#if __cplusplus >= 201703L
size = (size+(alignment-1))&~(alignment-1);
- return aligned_alloc(alignment, size);
+ return std::aligned_alloc(alignment, size);
#elif defined(HAVE_POSIX_MEMALIGN)
void *ret;
if(posix_memalign(&ret, alignment, size) == 0)
@@ -30,7 +28,7 @@ void *al_malloc(size_t alignment, size_t size)
#elif defined(HAVE__ALIGNED_MALLOC)
return _aligned_malloc(size, alignment);
#else
- auto *ret = static_cast<char*>(malloc(size+alignment));
+ auto *ret = static_cast<char*>(std::malloc(size+alignment));
if(ret != nullptr)
{
*(ret++) = 0x00;
@@ -44,14 +42,14 @@ void *al_malloc(size_t alignment, size_t size)
void *al_calloc(size_t alignment, size_t size)
{
void *ret = al_malloc(alignment, size);
- if(ret) memset(ret, 0, size);
+ if(ret) std::memset(ret, 0, size);
return ret;
}
void al_free(void *ptr) noexcept
{
-#if ALIGNED_ALLOC_AVAILABLE || defined(HAVE_POSIX_MEMALIGN)
- free(ptr);
+#if (__cplusplus >= 201703L) || defined(HAVE_POSIX_MEMALIGN)
+ std::free(ptr);
#elif defined(HAVE__ALIGNED_MALLOC)
_aligned_free(ptr);
#else
@@ -61,7 +59,7 @@ void al_free(void *ptr) noexcept
do {
--finder;
} while(*finder == 0x55);
- free(finder);
+ std::free(finder);
}
#endif
}