blob: 87667b42c35c7bea3f5d4c5d3e3a7a60c8a94539 [file] [log] [blame]
#include <stdlib.h>
#include <assert.h>
#include "memalign.h"
struct align_footer {
unsigned int offset;
};
#define PTR_ALIGN(ptr, mask) \
(char *) (((unsigned long) ((ptr) + (mask)) & ~(mask)))
void *fio_memalign(size_t alignment, size_t size)
{
struct align_footer *f;
void *ptr, *ret = NULL;
assert(!(alignment & (alignment - 1)));
ptr = malloc(size + alignment + size + sizeof(*f) - 1);
if (ptr) {
ret = PTR_ALIGN(ptr, alignment);
f = ret + size;
f->offset = (unsigned long) ret - (unsigned long) ptr;
}
return ret;
}
void fio_memfree(void *ptr, size_t size)
{
struct align_footer *f = ptr + size;
free(ptr - f->offset);
}