ProcessStatisticsUnimplemented.cpp 273 B

12345678910111213141516
  1. /*
  2. * Copyright (c) 2024, Andrew Kaster <akaster@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #include <LibCore/Platform/ProcessStatistics.h>
  7. namespace Core::Platform {
  8. ErrorOr<void> update_process_statistics(ProcessStatistics&)
  9. {
  10. return {};
  11. }
  12. }