2018-10-10 12:53:07 +03:00
|
|
|
#pragma once
|
|
|
|
|
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
|
|
|
|
|
2018-10-28 11:36:21 +03:00
|
|
|
#ifdef KERNEL
|
2019-05-28 12:53:16 +03:00
|
|
|
# include <Kernel/kmalloc.h>
|
2018-10-28 11:36:21 +03:00
|
|
|
#else
|
2019-05-28 12:53:16 +03:00
|
|
|
# include <stdlib.h>
|
2018-10-28 11:36:21 +03:00
|
|
|
|
2019-05-28 12:53:16 +03:00
|
|
|
# define kcalloc calloc
|
|
|
|
# define kmalloc malloc
|
|
|
|
# define kfree free
|
|
|
|
# define krealloc realloc
|
2018-10-28 11:36:21 +03:00
|
|
|
|
2019-05-28 12:53:16 +03:00
|
|
|
# ifdef __serenity__
|
2019-03-27 14:48:21 +03:00
|
|
|
inline void* operator new(size_t size)
|
|
|
|
{
|
|
|
|
return kmalloc(size);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void operator delete(void* ptr)
|
|
|
|
{
|
|
|
|
return kfree(ptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void* operator new[](size_t size)
|
|
|
|
{
|
|
|
|
return kmalloc(size);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void operator delete[](void* ptr)
|
|
|
|
{
|
|
|
|
return kfree(ptr);
|
|
|
|
}
|
|
|
|
|
2019-04-05 04:58:40 +03:00
|
|
|
inline void* operator new(size_t, void* ptr)
|
|
|
|
{
|
|
|
|
return ptr;
|
|
|
|
}
|
2019-05-28 12:53:16 +03:00
|
|
|
# endif
|
2019-04-05 04:58:40 +03:00
|
|
|
|
2019-03-27 14:48:21 +03:00
|
|
|
#endif
|