QuRT: added sched.h

Added the pieces required from sched.h

Signed-off-by: Mark Charlebois <charlebm@gmail.com>
This commit is contained in:
Mark Charlebois 2015-04-17 18:44:39 -07:00
parent 6ce0b7b753
commit c9d4f02541
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
#pragma once
#define SCHED_FIFO 1
#define SCHED_RR 2
struct sched_param
{
int sched_priority;
};
int sched_get_priority_max(int policy);
int sched_get_priority_min(int policy);