Files
nostalgia/deps/ox/src/ox/std/heapmgr.hpp
2021-01-21 23:35:13 -06:00

34 lines
605 B
C++

/*
* Copyright 2015 - 2021 gary@drinkingtea.net
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#include "types.hpp"
namespace ox::heapmgr {
struct HeapSegment {
std::size_t size;
uint8_t inUse;
void init(std::size_t maxSize);
template<typename T>
T *data();
template<typename T = uint8_t>
T *end();
};
void initHeap(char *heapBegin, char *heapEnd);
[[nodiscard]] void *malloc(std::size_t allocSize);
void free(void *ptr);
}