sched.h 289 B

123456789101112131415161718192021
  1. /*
  2. * Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. #include <Kernel/API/POSIX/sys/types.h>
  8. #ifdef __cplusplus
  9. extern "C" {
  10. #endif
  11. struct sched_param {
  12. int sched_priority;
  13. };
  14. #ifdef __cplusplus
  15. }
  16. #endif