1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-22 18:15:08 +00:00
serenity/Kernel/Syscalls/ioctl.cpp
2021-09-07 13:53:14 +02:00

24 lines
613 B
C++

/*
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <Kernel/FileSystem/OpenFileDescription.h>
#include <Kernel/Process.h>
#include <LibC/sys/ioctl_numbers.h>
namespace Kernel {
KResultOr<FlatPtr> Process::sys$ioctl(int fd, unsigned request, FlatPtr arg)
{
VERIFY_PROCESS_BIG_LOCK_ACQUIRED(this)
auto description = TRY(fds().open_file_description(fd));
if (request == FIONBIO) {
description->set_blocking(arg == 0);
return KSuccess;
}
return description->file().ioctl(*description, request, arg);
}
}