summaryrefslogtreecommitdiff
path: root/Kernel/Limits.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-01-23 05:13:17 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-01-23 05:14:00 +0100
commit754037874c692769c703f86bfa7af641e1346139 (patch)
treed88a26977532a288eed2f61ef61526931713fa4f /Kernel/Limits.h
parent19104570cc286b608f6f8c22002ed4a8965b4648 (diff)
downloadserenity-754037874c692769c703f86bfa7af641e1346139.zip
Move VFS sources into Kernel/.
Diffstat (limited to 'Kernel/Limits.h')
-rw-r--r--Kernel/Limits.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/Kernel/Limits.h b/Kernel/Limits.h
new file mode 100644
index 0000000000..00d063e7b7
--- /dev/null
+++ b/Kernel/Limits.h
@@ -0,0 +1,9 @@
+#pragma once
+
+#include "UnixTypes.h"
+
+inline static const Unix::off_t maxFileOffset = 2147483647;
+
+static const size_t GoodBufferSize = 4096;
+
+