We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Need to use this API:
VirtualAlloc()
VirtualFree()
mmap()
munmap()
New files:
include/FlameIDE/Os/Allocation.hpp
src/Os/Allocation.cpp
src/Os/AllocationFunctions.hpp
src/Os/Posix/AllocationFunctions.cpp
src/Os/Windows/AllocationFunctions.cpp
src/Os/Tests/AllocationTest.hpp
src/Os/Tests/AllocationTest.cpp
Edit:
src/Os/Test/TestAggregator.cpp
Implement as functions:
#include <FlameIDE/Common/Traits/Defaults.hpp> #include <FlameIDE/Os/Expected.hpp> #include <FlameIDE/Os/Types.hpp> namespace flame_ide {namespace os { Expected<VoidTraits::Pointer, Status> allocate(Types::size_t size) noexcept; void deallocate(VoidTraits::Pointer pointer, Types::size_t size) noexcept; }} // namespace flame_ide::os
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Need to use this API:
VirtualAlloc()
/VirtualFree()
(see 1, 2)mmap()
/munmap()
in anonymous mode (see this)New files:
include/FlameIDE/Os/Allocation.hpp
src/Os/Allocation.cpp
src/Os/AllocationFunctions.hpp
src/Os/Posix/AllocationFunctions.cpp
src/Os/Windows/AllocationFunctions.cpp
src/Os/Tests/AllocationTest.hpp
src/Os/Tests/AllocationTest.cpp
Edit:
src/Os/Test/TestAggregator.cpp
Implement as functions:
The text was updated successfully, but these errors were encountered: