diff options
Diffstat (limited to 'Kernel/API/POSIX/sched.h')
-rw-r--r-- | Kernel/API/POSIX/sched.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Kernel/API/POSIX/sched.h b/Kernel/API/POSIX/sched.h new file mode 100644 index 0000000000..77dff7fe60 --- /dev/null +++ b/Kernel/API/POSIX/sched.h @@ -0,0 +1,21 @@ +/* + * Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org> + * + * SPDX-License-Identifier: BSD-2-Clause + */ + +#pragma once + +#include <Kernel/API/POSIX/sys/types.h> + +#ifdef __cplusplus +extern "C" { +#endif + +struct sched_param { + int sched_priority; +}; + +#ifdef __cplusplus +} +#endif |