mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 07:38:10 +00:00
Kernel: Remove various other uses of ssize_t
This commit is contained in:
parent
ca3cae81eb
commit
bc3076f894
33 changed files with 123 additions and 129 deletions
|
@ -97,7 +97,7 @@ private:
|
|||
};
|
||||
|
||||
Atomic<FreeSlab*> m_freelist { nullptr };
|
||||
Atomic<ssize_t, AK::MemoryOrder::memory_order_relaxed> m_num_allocated;
|
||||
Atomic<size_t, AK::MemoryOrder::memory_order_relaxed> m_num_allocated;
|
||||
size_t m_slab_count;
|
||||
void* m_base { nullptr };
|
||||
void* m_end { nullptr };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue