Skip to content
Snippets Groups Projects
Commit e2e45cbf authored by antnh6@gmail.com's avatar antnh6@gmail.com
Browse files

fixed kernel.h struct def

parent ebf9201a
No related branches found
No related tags found
1 merge request!16Withtime
......@@ -12,7 +12,7 @@ typedef struct kernel {
// a structure for keeping the request currently being serviced, including its arguments.
Request syscalReq;
TD* Active;
} KernelStruct;
}KernelStruct;
void kernelInit (KernelStruct* Colonel);
......
#include "scheduler.h"
int schedulerInit() {
} // add the IDLE task with lowest priority and first USER task maybe
int pushToScheduler (KernelStruct* Colonel, TD* Task) {
}
TD* getNextTaskScheduler (KernelStruct* Colonel) {
}
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