Skip to content
Snippets Groups Projects
Commit c9d4f025 authored by Mark Charlebois's avatar Mark Charlebois
Browse files

QuRT: added sched.h


Added the pieces required from sched.h

Signed-off-by: default avatarMark Charlebois <charlebm@gmail.com>
parent 6ce0b7b7
No related branches found
No related tags found
No related merge requests found
#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);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment