From bd0b6ec2fdf6e27be9ecf811eede2a49241fa081 Mon Sep 17 00:00:00 2001 From: Francois-Olivier Devaux Date: Fri, 24 Aug 2007 13:46:44 +0000 Subject: [PATCH] Fixed problem with _mm_malloc under OSX. Thanks to Callum Lerwick for solving that issue. --- libopenjpeg/j2k_lib.h | 30 ++++++++++++++++++++++++++---- 1 file changed, 26 insertions(+), 4 deletions(-) diff --git a/libopenjpeg/j2k_lib.h b/libopenjpeg/j2k_lib.h index d13ac5fe..a8fc8f20 100644 --- a/libopenjpeg/j2k_lib.h +++ b/libopenjpeg/j2k_lib.h @@ -32,7 +32,7 @@ The functions in J2K_LIB.C are internal utilities mainly used for memory management. */ -#ifndef __GCC__ +#ifndef __GNUC__ #define __attribute__(x) /* */ #endif @@ -62,13 +62,35 @@ Allocate memory aligned to a 16 byte boundry @return Returns a void pointer to the allocated space, or NULL if there is insufficient memory available */ #ifdef WIN32 -#include -#else + +#ifdef __GNUC__ #include +#else /* MSVC, Intel C++ */ +#include #endif -#define opj_aligned_malloc(size) _mm_malloc(size, 16) + +#define opj_aligned_malloc(size) _mm_malloc(size, 16) #define opj_aligned_free(m) _mm_free(m) +#else /* Not WIN32 */ + +/* Linux x86_64 and OSX always align allocations to 16 bytes */ +#if defined(__amd64__) || defined(__APPLE__) +#define opj_aligned_malloc(size) malloc(size) +#else +extern int posix_memalign (void **, size_t, size_t); + +static INLINE void* __attribute__ ((malloc)) opj_aligned_malloc(size_t size){ + void* mem = NULL; + posix_memalign(&mem, 16, size); + return mem; +} +#endif + +#define opj_aligned_free(m) free(m) + +#endif + /** Reallocate memory blocks. @param memblock Pointer to previously allocated memory block