1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 08:58:11 +00:00

Kernel: Get rid of Unix namespace.

This is no longer needed as the Kernel can stand on its own legs now
and there won't be any conflict with host system data types.
This commit is contained in:
Andreas Kling 2019-01-23 06:53:01 +01:00
parent 69a3aecf6b
commit 8bb18fdc56
21 changed files with 124 additions and 125 deletions

View file

@ -56,7 +56,7 @@ ByteBuffer Inode::read_entire(FileDescriptor* descriptor)
ssize_t nread;
byte buffer[4096];
byte* out = contents.pointer();
Unix::off_t offset = 0;
off_t offset = 0;
for (;;) {
nread = read_bytes(offset, sizeof(buffer), buffer, descriptor);
ASSERT(nread <= (ssize_t)sizeof(buffer));
@ -112,17 +112,17 @@ void Inode::will_be_destroyed()
flush_metadata();
}
int Inode::set_atime(Unix::time_t)
int Inode::set_atime(time_t)
{
return -ENOTIMPL;
}
int Inode::set_ctime(Unix::time_t)
int Inode::set_ctime(time_t)
{
return -ENOTIMPL;
}
int Inode::set_mtime(Unix::time_t)
int Inode::set_mtime(time_t)
{
return -ENOTIMPL;
}