summaryrefslogtreecommitdiff
path: root/src/common/virtual_buffer.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-04-23general: Convert source file copyright comments over to SPDXGravatar Morph1-3/+2
This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
2020-11-17page_table: Allow page tables to be movedGravatar Lioncash1-2/+2
Makes page tables and virtual buffers able to be moved, but not copied, making the interface more flexible. Previously, with the destructor specified, but no move assignment or constructor specified, they wouldn't be implicitly generated.
2020-08-05common/virtual_buffer: drop unused includesGravatar Jan Beich1-9/+0
On DragonFly and NetBSD build fails with src/common/virtual_buffer.cpp src/common/virtual_buffer.cpp:16:10: fatal error: sys/sysinfo.h: No such file or directory #include <sys/sysinfo.h> ^~~~~~~~~~~~~~~
2020-07-25virtual_buffer: Mark size parameter of FreeMemoryPages() as [[maybe_unused]]Gravatar Lioncash1-1/+1
This isn't used on Windows, but is used on non-Windows operating systems.
2020-04-17common: Add VirtualBuffer class, to abstract memory virtualization.Gravatar bunnei1-0/+52