Move VFS sources into Kernel/.

This commit is contained in:
Andreas Kling 2019-01-23 05:13:17 +01:00
commit 754037874c
Notes: sideshowbarker 2024-07-19 15:58:39 +09:00
49 changed files with 35 additions and 37 deletions

9
Kernel/Limits.h Normal file
View file

@ -0,0 +1,9 @@
#pragma once
#include "UnixTypes.h"
inline static const Unix::off_t maxFileOffset = 2147483647;
static const size_t GoodBufferSize = 4096;