2016-10-07 04:26:39 -07:00
|
|
|
/*
|
|
|
|
* Copyright 2016 Józef Kucia for CodeWeavers
|
|
|
|
*
|
2017-06-16 12:05:54 -07:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2016-10-07 04:26:39 -07:00
|
|
|
*
|
2017-06-16 12:05:54 -07:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2016-10-07 04:26:39 -07:00
|
|
|
*
|
2017-06-16 12:05:54 -07:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2016-10-07 04:26:39 -07:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __VKD3D_MEMORY_H
|
|
|
|
#define __VKD3D_MEMORY_H
|
|
|
|
|
2016-10-24 04:20:09 -07:00
|
|
|
#include <assert.h>
|
2016-10-07 04:26:39 -07:00
|
|
|
#include "vkd3d_debug.h"
|
|
|
|
|
|
|
|
static inline void *vkd3d_malloc(size_t size)
|
|
|
|
{
|
|
|
|
void *ptr;
|
|
|
|
if (!(ptr = malloc(size)))
|
|
|
|
ERR("Out of memory.\n");
|
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void *vkd3d_realloc(void *ptr, size_t size)
|
|
|
|
{
|
|
|
|
if (!(ptr = realloc(ptr, size)))
|
|
|
|
ERR("Out of memory.\n");
|
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void *vkd3d_calloc(size_t count, size_t size)
|
|
|
|
{
|
|
|
|
void *ptr;
|
2016-10-24 04:20:09 -07:00
|
|
|
assert(count <= ~(size_t)0 / size);
|
2016-10-07 04:26:39 -07:00
|
|
|
if (!(ptr = calloc(count, size)))
|
|
|
|
ERR("Out of memory.\n");
|
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void vkd3d_free(void *ptr)
|
|
|
|
{
|
|
|
|
free(ptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* __VKD3D_MEMORY_H */
|