2024-04-03 08:05:20 -03:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2024, Andrew Kaster <akaster@serenityos.org>
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
*/
|
|
|
|
|
|
2024-04-21 00:35:17 -03:00
|
|
|
#include <LibCore/Platform/ProcessStatistics.h>
|
2024-04-03 08:05:20 -03:00
|
|
|
|
2024-04-21 00:35:17 -03:00
|
|
|
namespace Core::Platform {
|
2024-04-03 08:05:20 -03:00
|
|
|
|
|
|
|
|
ErrorOr<void> update_process_statistics(ProcessStatistics&)
|
|
|
|
|
{
|
|
|
|
|
return {};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|