15 lines
237 B
C
15 lines
237 B
C
#ifndef SCHED_H_
|
|
#define SCHED_H_
|
|
|
|
#include <time.h>
|
|
|
|
struct sched_param {
|
|
int sched_priority;
|
|
int sched_ss_low_priority;
|
|
struct timespec sched_ss_repl_period;
|
|
struct timespec sched_ss_init_budget;
|
|
int sched_ss_max_repl;
|
|
};
|
|
|
|
#endif
|