Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion api/hal/machine.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#include <memory>

#include <arch.hpp>
#include <util/allocator.hpp>
#include <mem/allocator.hpp>

namespace os {
namespace detail { class Machine; }
Expand Down
2 changes: 1 addition & 1 deletion api/hal/machine_memory.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// limitations under the License.

#include <os.hpp>
#include <util/alloc_lstack.hpp>
#include <mem/alloc/lstack.hpp>

#ifndef OS_MACHINE_MEMORY_HPP
#define OS_MACHINE_MEMORY_HPP
Expand Down
4 changes: 2 additions & 2 deletions api/kernel/memory.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@

#include <util/bitops.hpp>
#include <util/units.hpp>
#include <util/alloc_buddy.hpp>
#include <util/allocator.hpp>
#include <mem/alloc/buddy.hpp>
#include <mem/allocator.hpp>
#include <sstream>
#include <expects>
#include <kernel/memmap.hpp>
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion api/net/tcp/connection.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
#include <delegate>
#include <util/timer.hpp>

#include <util/alloc_pmr.hpp>
#include <mem/alloc/pmr.hpp>

namespace net {
// Forward declaration of the TCP object
Expand Down
2 changes: 1 addition & 1 deletion api/net/tcp/tcp.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
#include <net/socket.hpp>
#include <net/ip4/ip4.hpp>
#include <util/bitops.hpp>
#include <util/alloc_pmr.hpp>
#include <mem/alloc/pmr.hpp>

namespace net {

Expand Down
2 changes: 1 addition & 1 deletion src/musl/mmap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#include <cstdint>
#include <sys/mman.h>
#include <errno.h>
#include <util/alloc_buddy.hpp>
#include <mem/alloc/buddy.hpp>
#include <os>
#include <kernel/memory.hpp>
#include <kernel.hpp>
Expand Down
2 changes: 1 addition & 1 deletion src/util/pmr_default.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

#include <util/alloc_pmr.hpp>
#include <mem/alloc/pmr.hpp>

std::pmr::memory_resource* std::pmr::get_default_resource() noexcept {
static os::mem::Default_pmr* default_pmr;
Expand Down
4 changes: 2 additions & 2 deletions test/unit/memory/alloc/buddy_alloc_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
// #define DEBUG_UNIT

#include <common.cxx>
#include <util/alloc_buddy.hpp>
#include <util/allocator.hpp>
#include <mem/alloc/buddy.hpp>
#include <mem/allocator.hpp>
#include <vector>

struct Pool {
Expand Down
2 changes: 1 addition & 1 deletion test/unit/memory/alloc/pmr_alloc_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#define DEBUG_UNIT

#include <common.cxx>
#include <util/alloc_pmr.hpp>
#include <mem/alloc/pmr.hpp>
#include <util/units.hpp>

#if __has_include(<experimental/memory_resource>)
Expand Down
2 changes: 1 addition & 1 deletion test/unit/memory/lstack/test_lstack.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
#include <common.cxx>

#include <algorithm>
#include <util/alloc_lstack.hpp>
#include <mem/alloc/lstack.hpp>
#include <util/units.hpp>
#include <util/bitops.hpp>
#include <malloc.h>
Expand Down