mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-26 19:22:30 -05:00
7a1d09ef1a
When there is more than one file descriptor for a file closing one of them should not close the underlying file. Previously this relied on the file's ref_count() but at least for sockets this didn't work reliably.
57 lines
971 B
C++
57 lines
971 B
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <AK/StringView.h>
|
|
#include <Kernel/FileSystem/File.h>
|
|
#include <Kernel/FileSystem/FileDescription.h>
|
|
|
|
namespace Kernel {
|
|
|
|
File::File()
|
|
{
|
|
}
|
|
|
|
File::~File()
|
|
{
|
|
}
|
|
|
|
KResultOr<NonnullRefPtr<FileDescription>> File::open(int options)
|
|
{
|
|
auto description = FileDescription::create(*this);
|
|
if (!description.is_error()) {
|
|
description.value()->set_rw_mode(options);
|
|
description.value()->set_file_flags(options);
|
|
}
|
|
return description;
|
|
}
|
|
|
|
KResult File::close()
|
|
{
|
|
return KSuccess;
|
|
}
|
|
|
|
int File::ioctl(FileDescription&, unsigned, FlatPtr)
|
|
{
|
|
return -ENOTTY;
|
|
}
|
|
|
|
KResultOr<Region*> File::mmap(Process&, FileDescription&, const Range&, u64, int, bool)
|
|
{
|
|
return ENODEV;
|
|
}
|
|
|
|
KResult File::attach(FileDescription&)
|
|
{
|
|
m_attach_count++;
|
|
return KSuccess;
|
|
}
|
|
|
|
void File::detach(FileDescription&)
|
|
{
|
|
m_attach_count--;
|
|
}
|
|
|
|
}
|