summaryrefslogtreecommitdiff
path: root/Kernel/Syscalls/emuctl.cpp
blob: 85064065f6015e96cc4f29c107a5bf85f69e5e97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#include <Kernel/Process.h>

namespace Kernel {

ErrorOr<FlatPtr> Process::sys$emuctl()
{
    VERIFY_NO_PROCESS_BIG_LOCK(this);
    return ENOSYS;
}

}