libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
Scheduler.hxx
1#pragma once
2
3// C
4#include <stdint.h>
5
6namespace cosmos {
7
8/*
9 * this structure is actually not declared in the userspace headers so it
10 * seems we have to declare it ourselves
11 */
12struct sched_attr {
14 uint32_t size;
16 uint32_t sched_policy;
17 uint64_t sched_flags;
19 int32_t sched_nice;
22 /* Remaining fields are for SCHED_DEADLINE */
23 uint64_t sched_runtime;
24 uint64_t sched_deadline;
25 uint64_t sched_period;
26};
27
28} // end ns
uint32_t sched_policy
Policy (SCHED_*)
Definition Scheduler.hxx:16
int32_t sched_nice
Nice value for OTHER, BATCH.
Definition Scheduler.hxx:19
uint32_t size
Size of this structure.
Definition Scheduler.hxx:14
uint32_t sched_priority
Static priority for FIFO, RR.
Definition Scheduler.hxx:21