You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
356 B
20 lines
356 B
#ifndef STRACE_SCHED_ATTR_H
|
|
#define STRACE_SCHED_ATTR_H
|
|
|
|
# include <stdint.h>
|
|
|
|
struct sched_attr {
|
|
uint32_t size;
|
|
uint32_t sched_policy;
|
|
uint64_t sched_flags;
|
|
uint32_t sched_nice;
|
|
uint32_t sched_priority;
|
|
uint64_t sched_runtime;
|
|
uint64_t sched_deadline;
|
|
uint64_t sched_period;
|
|
};
|
|
|
|
# define SCHED_ATTR_MIN_SIZE 48
|
|
|
|
#endif /* !STRACE_SCHED_ATTR_H */
|