mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-24 10:12:25 -05:00
1682f0b760
SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
29 lines
852 B
C++
29 lines
852 B
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Function.h>
|
|
#include <AK/Types.h>
|
|
|
|
namespace Kernel {
|
|
|
|
#define SLAB_ALLOC_SCRUB_BYTE 0xab
|
|
#define SLAB_DEALLOC_SCRUB_BYTE 0xbc
|
|
|
|
void* slab_alloc(size_t slab_size);
|
|
void slab_dealloc(void*, size_t slab_size);
|
|
void slab_alloc_init();
|
|
void slab_alloc_stats(Function<void(size_t slab_size, size_t allocated, size_t free)>);
|
|
|
|
#define MAKE_SLAB_ALLOCATED(type) \
|
|
public: \
|
|
void* operator new(size_t) { return slab_alloc(sizeof(type)); } \
|
|
void operator delete(void* ptr) { slab_dealloc(ptr, sizeof(type)); } \
|
|
\
|
|
private:
|
|
|
|
}
|