2020-07-31 00:38:15 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
2021-04-22 11:24:48 +03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-07-31 00:38:15 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <Kernel/FileSystem/VirtualFileSystem.h>
|
|
|
|
#include <Kernel/Process.h>
|
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
2021-06-28 21:59:35 +03:00
|
|
|
KResultOr<FlatPtr> Process::sys$sync()
|
2020-07-31 00:38:15 +03:00
|
|
|
{
|
2021-08-07 16:06:07 +03:00
|
|
|
VERIFY_NO_PROCESS_BIG_LOCK(this)
|
2020-07-31 00:38:15 +03:00
|
|
|
REQUIRE_PROMISE(stdio);
|
2021-07-11 01:26:17 +03:00
|
|
|
VirtualFileSystem::sync();
|
2020-07-31 00:38:15 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|