All: Clear lines with only whitspace in them
This commit is contained in:
@@ -12,7 +12,7 @@ namespace Kernel
|
||||
return BAN::Error::from_errno(ENOMEM);
|
||||
return BAN::RefPtr<Inode>::adopt(pipe);
|
||||
}
|
||||
|
||||
|
||||
Pipe::Pipe(const Credentials& credentials)
|
||||
: m_uid(credentials.euid())
|
||||
, m_gid(credentials.egid())
|
||||
@@ -29,7 +29,7 @@ namespace Kernel
|
||||
ASSERT(m_writing_count > 0);
|
||||
m_writing_count++;
|
||||
}
|
||||
|
||||
|
||||
void Pipe::close_writing()
|
||||
{
|
||||
LockGuard _(m_lock);
|
||||
@@ -63,7 +63,7 @@ namespace Kernel
|
||||
|
||||
return to_copy;
|
||||
}
|
||||
|
||||
|
||||
BAN::ErrorOr<size_t> Pipe::write_impl(off_t, const void* buffer, size_t count)
|
||||
{
|
||||
LockGuard _(m_lock);
|
||||
@@ -81,5 +81,5 @@ namespace Kernel
|
||||
|
||||
return count;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
@@ -6,7 +6,7 @@ namespace Kernel
|
||||
{
|
||||
|
||||
/*
|
||||
|
||||
|
||||
RAM INODE
|
||||
|
||||
*/
|
||||
@@ -68,7 +68,7 @@ namespace Kernel
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
|
||||
RAM DIRECTORY INODE
|
||||
|
||||
*/
|
||||
@@ -217,7 +217,7 @@ namespace Kernel
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
|
||||
RAM SYMLINK INODE
|
||||
|
||||
*/
|
||||
|
||||
@@ -35,7 +35,7 @@ namespace Kernel
|
||||
auto* tmpfs = MUST(RamFileSystem::create(1024 * 1024, tmpfs_mode, 0, 0));
|
||||
MUST(s_instance->mount(root_creds, tmpfs, "/tmp"));
|
||||
}
|
||||
|
||||
|
||||
VirtualFileSystem& VirtualFileSystem::get()
|
||||
{
|
||||
ASSERT(s_instance);
|
||||
|
||||
Reference in New Issue
Block a user