Files
fastfetch/src/common/mallocHelper.h
T

40 lines
901 B
C
Raw Normal View History

#pragma once
2022-11-23 15:10:40 +08:00
#include <stdlib.h>
2023-06-08 21:04:56 +08:00
#include <assert.h>
2022-11-23 15:10:40 +08:00
#if FF_HAVE_MALLOC_USABLE_SIZE || FF_HAVE_MSVC_MSIZE
2025-12-22 08:44:00 +08:00
#if __has_include(<malloc.h>)
#include <malloc.h>
#else
#include <malloc_np.h> // For DragonFly BSD
#endif
#elif FF_HAVE_MALLOC_SIZE
#include <malloc/malloc.h>
#endif
2024-01-18 14:07:29 +08:00
static inline void ffWrapFree(const void* pPtr)
2022-11-23 15:10:40 +08:00
{
assert(pPtr);
2022-11-23 15:10:40 +08:00
if(*(void**)pPtr)
free(*(void**)pPtr);
}
#define FF_AUTO_FREE __attribute__((__cleanup__(ffWrapFree)))
// ptr MUST be a malloc'ed pointer
static inline size_t ffMallocUsableSize(const void* ptr)
{
assert(ptr);
#if FF_HAVE_MALLOC_USABLE_SIZE
return malloc_usable_size((void*) ptr);
#elif FF_HAVE_MALLOC_SIZE
return malloc_size((void*) ptr);
#elif FF_HAVE_MSVC_MSIZE
return _msize((void*) ptr);
#else
2026-01-07 20:11:41 +08:00
(void) ptr;
return 0; // Not supported
#endif
}