1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 16:48:12 +00:00

Kernel: Remove Limits.h

This commit is contained in:
Andreas Kling 2019-04-03 13:18:42 +02:00
parent a095a90b51
commit 58c4d41c5f
10 changed files with 9 additions and 24 deletions

View file

@ -1,5 +1,4 @@
#include "ZeroDevice.h"
#include "Limits.h"
#include <AK/StdLibExtras.h>
#include <AK/kstdio.h>
@ -19,13 +18,13 @@ bool ZeroDevice::can_read(Process&) const
ssize_t ZeroDevice::read(Process&, byte* buffer, ssize_t size)
{
ssize_t count = min(GoodBufferSize, size);
ssize_t count = min(PAGE_SIZE, size);
memset(buffer, 0, (size_t)count);
return count;
}
ssize_t ZeroDevice::write(Process&, const byte*, ssize_t size)
{
return min(GoodBufferSize, size);
return min(PAGE_SIZE, size);
}