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