summaryrefslogtreecommitdiff
path: root/src/kernel/task/sched.h
blob: 1233a441d676226477865c32f71b8ca29b86a4f4 (plain) (blame)
1
2
3
4
5
6
7
8
9
#ifndef DEF_SCHED_H
#define DEF_SCHED_H

#include "task.h"

void sched_enqueue(struct thread *t);
struct thread *sched_dequeue();

#endif