Compare commits

...

3 commits

Author SHA1 Message Date
nishinji c8f1ba4afb
Merge 501ac163f2 into d4c0c499a4 2024-05-13 21:23:21 +01:00
Pedro Montes Alcalde d4c0c499a4
mem/threads: Include some missing header files (#3291) 2024-05-13 17:02:42 -03:00
Pedro Montes Alcalde 052abe8e83
external: Update tracy to 0.10.0 (#3280) 2024-05-13 14:30:43 -03:00
3 changed files with 5 additions and 1 deletions

2
external/tracy vendored

@ -1 +1 @@
Subproject commit 897aec5b062664d2485f4f9a213715d2e527e0ca
Subproject commit 37aff70dfa50cf6307b3fee6074d627dc2929143

View file

@ -18,6 +18,8 @@
#pragma once
#include <kernel/thread/thread_state.h>
#include <algorithm>
#include <list>
#include <set>

View file

@ -20,6 +20,8 @@
#include <mem/ptr.h>
#include <util/align.h>
#include <algorithm>
struct MemspaceBlockAllocator {
struct Block {
std::uint32_t size;