2020-01-18 11:38:21 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
2021-04-22 11:24:48 +03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 11:38:21 +03:00
|
|
|
*/
|
|
|
|
|
2018-10-10 12:53:07 +03:00
|
|
|
#pragma once
|
|
|
|
|
2020-08-04 22:15:45 +03:00
|
|
|
#ifndef __serenity__
|
2020-02-25 17:58:24 +03:00
|
|
|
# include <new>
|
2021-05-15 11:06:41 +03:00
|
|
|
|
|
|
|
# ifndef AK_OS_MACOS
|
|
|
|
inline size_t malloc_good_size(size_t size) { return size; }
|
|
|
|
# else
|
|
|
|
# include <malloc/malloc.h>
|
|
|
|
# endif
|
2020-02-25 17:58:24 +03:00
|
|
|
#endif
|
|
|
|
|
2019-04-20 13:58:02 +03:00
|
|
|
#ifdef KERNEL
|
2019-05-28 12:53:16 +03:00
|
|
|
# define AK_MAKE_ETERNAL \
|
|
|
|
public: \
|
|
|
|
void* operator new(size_t size) { return kmalloc_eternal(size); } \
|
|
|
|
\
|
|
|
|
private:
|
2018-11-01 01:19:15 +03:00
|
|
|
#else
|
2019-05-28 12:53:16 +03:00
|
|
|
# define AK_MAKE_ETERNAL
|
2018-11-01 01:19:15 +03:00
|
|
|
#endif
|
|
|
|
|
2020-02-09 17:50:13 +03:00
|
|
|
#if defined(KERNEL)
|
2019-09-16 10:01:44 +03:00
|
|
|
# include <Kernel/Heap/kmalloc.h>
|
2018-10-28 11:36:21 +03:00
|
|
|
#else
|
2019-05-28 12:53:16 +03:00
|
|
|
# include <stdlib.h>
|
2020-08-04 22:15:45 +03:00
|
|
|
|
2019-05-28 12:53:16 +03:00
|
|
|
# define kcalloc calloc
|
|
|
|
# define kmalloc malloc
|
2021-05-15 11:06:41 +03:00
|
|
|
# define kmalloc_good_size malloc_good_size
|
2019-05-28 12:53:16 +03:00
|
|
|
# define kfree free
|
|
|
|
# define krealloc realloc
|
2020-08-04 22:15:45 +03:00
|
|
|
|
|
|
|
# ifdef __serenity__
|
|
|
|
|
2020-11-05 11:59:30 +03:00
|
|
|
# include <new>
|
|
|
|
|
2020-08-04 22:15:45 +03:00
|
|
|
inline void* operator new(size_t size)
|
|
|
|
{
|
|
|
|
return kmalloc(size);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void operator delete(void* ptr)
|
|
|
|
{
|
|
|
|
return kfree(ptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void operator delete(void* ptr, size_t)
|
|
|
|
{
|
|
|
|
return kfree(ptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void* operator new[](size_t size)
|
|
|
|
{
|
|
|
|
return kmalloc(size);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void operator delete[](void* ptr)
|
|
|
|
{
|
|
|
|
return kfree(ptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void operator delete[](void* ptr, size_t)
|
|
|
|
{
|
|
|
|
return kfree(ptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
# endif
|
|
|
|
|
2019-03-27 14:48:21 +03:00
|
|
|
#endif
|