You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef _SCHED_H_
|
|
#define _SCHED_H_
|
|
|
|
#include "process.h"
|
|
|
|
//length of a time slice, in number of ticks
|
|
#define TIME_SLICE_LEN 2
|
|
|
|
void insert_to_ready_queue( process* proc );
|
|
void schedule();
|
|
|
|
#endif
|