mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 01:09:50 +00:00
Fixed: Use macros instead of functions for memory align wrappers (easier to find memory leaks)
--HG-- branch : develop
This commit is contained in:
parent
91d6734e2a
commit
dbcc8d46f5
1 changed files with 6 additions and 6 deletions
|
@ -386,17 +386,17 @@ typedef unsigned int uint; // at least 32bits (depend of processor)
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <intrin.h>
|
#include <intrin.h>
|
||||||
#include <malloc.h>
|
#include <malloc.h>
|
||||||
inline void *aligned_malloc(size_t size, size_t alignment) { return _aligned_malloc(size, alignment); }
|
#define aligned_malloc(size, alignment) _aligned_malloc(size, alignment)
|
||||||
inline void aligned_free(void *ptr) { _aligned_free(ptr); }
|
#define aligned_free(ptr) _aligned_free(ptr)
|
||||||
#elif defined(NL_OS_MAC)
|
#elif defined(NL_OS_MAC)
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
// under Mac OS X, malloc is already aligned for SSE and Altivec (16 bytes alignment)
|
// under Mac OS X, malloc is already aligned for SSE and Altivec (16 bytes alignment)
|
||||||
inline void *aligned_malloc(size_t size, size_t /* alignment */) { return malloc(size); }
|
#define aligned_malloc(size, alignment) malloc(size)
|
||||||
inline void aligned_free(void *ptr) { free(ptr); }
|
#define aligned_free(ptr) free(ptr)
|
||||||
#else
|
#else
|
||||||
#include <malloc.h>
|
#include <malloc.h>
|
||||||
inline void *aligned_malloc(size_t size, size_t alignment) { return memalign(alignment, size); }
|
#define aligned_malloc(size, alignment) memalign(alignment, size)
|
||||||
inline void aligned_free(void *ptr) { free(ptr); }
|
#define aligned_free(ptr) free(ptr)
|
||||||
#endif /* NL_COMP_ */
|
#endif /* NL_COMP_ */
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue