mirror of
https://github.com/SerenityOS/serenity
synced 2024-11-05 17:46:52 +00:00
17 lines
270 B
C++
17 lines
270 B
C++
/*
|
|
* Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <Kernel/Tasks/Process.h>
|
|
|
|
namespace Kernel {
|
|
|
|
ErrorOr<FlatPtr> Process::sys$emuctl()
|
|
{
|
|
VERIFY_NO_PROCESS_BIG_LOCK(this);
|
|
return ENOSYS;
|
|
}
|
|
|
|
}
|