libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
Scheduler.hxx
1
#pragma once
2
3
// C
4
#include <stdint.h>
5
6
namespace
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
*/
12
struct
sched_attr
{
14
uint32_t
size
;
16
uint32_t
sched_policy
;
17
uint64_t sched_flags;
19
int32_t
sched_nice
;
21
uint32_t
sched_priority
;
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
cosmos::sched_attr
Definition
Scheduler.hxx:12
cosmos::sched_attr::sched_policy
uint32_t sched_policy
Policy (SCHED_*)
Definition
Scheduler.hxx:16
cosmos::sched_attr::sched_nice
int32_t sched_nice
Nice value for OTHER, BATCH.
Definition
Scheduler.hxx:19
cosmos::sched_attr::size
uint32_t size
Size of this structure.
Definition
Scheduler.hxx:14
cosmos::sched_attr::sched_priority
uint32_t sched_priority
Static priority for FIFO, RR.
Definition
Scheduler.hxx:21
src
cosmos
private
Scheduler.hxx
Generated by
1.12.0