mirror of
https://github.com/cuberite/libdeflate.git
synced 2025-09-23 03:17:30 -04:00

I've decided to simplify and standardize the licensing status for the library by using the MIT license instead of CC0 (a.k.a. "public domain"). This eliminates the somewhat controversial 4(a) clause in CC0, and, for this and other reasons, should (somewhat ironically) make it easier for some people to use and contribute to the project. Note: copyright will apply to new changes and to new versions of the work as a whole. Of course, versions previously released as public domain remain public domain where legally recognized.
58 lines
1.8 KiB
C
58 lines
1.8 KiB
C
/*
|
|
* aligned_malloc.c - aligned memory allocation
|
|
*
|
|
* Originally public domain; changes after 2016-09-07 are copyrighted.
|
|
*
|
|
* Copyright 2016 Eric Biggers
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person
|
|
* obtaining a copy of this software and associated documentation
|
|
* files (the "Software"), to deal in the Software without
|
|
* restriction, including without limitation the rights to use,
|
|
* copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the
|
|
* Software is furnished to do so, subject to the following
|
|
* conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be
|
|
* included in all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
|
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
|
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
* OTHER DEALINGS IN THE SOFTWARE.
|
|
*/
|
|
|
|
/*
|
|
* This file provides portable aligned memory allocation functions that only
|
|
* use malloc() and free(). This avoids portability problems with
|
|
* posix_memalign(), aligned_alloc(), etc.
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include "aligned_malloc.h"
|
|
|
|
void *
|
|
aligned_malloc(size_t alignment, size_t size)
|
|
{
|
|
void *ptr = malloc(sizeof(void *) + alignment - 1 + size);
|
|
if (ptr) {
|
|
void *orig_ptr = ptr;
|
|
ptr = (void *)ALIGN((uintptr_t)ptr + sizeof(void *), alignment);
|
|
((void **)ptr)[-1] = orig_ptr;
|
|
}
|
|
return ptr;
|
|
}
|
|
|
|
void
|
|
aligned_free(void *ptr)
|
|
{
|
|
if (ptr)
|
|
free(((void **)ptr)[-1]);
|
|
}
|