diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2024-09-28 11:06:36 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2024-09-28 11:06:36 -0400 |
commit | b480537a274ed15d71a59f5babf194a651c78910 (patch) | |
tree | e353fb85424e6c677f985e70956074b023fcffc4 /memory.hpp | |
parent | fffe9352660f5fa672be0b50e13b657e10ce975f (diff) |
keyboard input buffering
Diffstat (limited to 'memory.hpp')
-rw-r--r-- | memory.hpp | 31 |
1 files changed, 31 insertions, 0 deletions
@@ -1,6 +1,37 @@ #ifndef MEMORY_HPP #define MEMORY_HPP +#include <cstddef> +#include <type_traits> + +template<typename T> +struct kallocator +{ + using value_type = T; + using size_type = std::size_t; + using difference_type = std::ptrdiff_t; + using propagate_on_container_move_assignment = std::true_type; + using is_always_equal = std::true_type; + + template<class U> + struct rebind { + typedef kallocator<U> other; + }; + + kallocator() = default; + + template<typename U> + kallocator(const kallocator<U>&) noexcept {} + + T* allocate(std::size_t n) { + return new T[n]; + } + + void deallocate([[maybe_unused]] T* p, [[maybe_unused]] std::size_t n) { + + } +}; + void memory_initialize(); #endif // MEMORY_HPP |