blob: 1ef5bf559e6a6a24eb517028c242ebaa5864a104 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include <sched.h>
struct sched_param {
int sched_priority;
#if defined _POSIX_SS || defined _POSIX_TSP
int sched_ss_low_priority;
struct timespec sched_ss_repl_period;
struct timespec sched_ss_init_budget;
int sched_ss_max_repl;
#endif
};
/*
POSIX(199309)
*/
|