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

commented out scheduler

parent 616117c8
No related branches found
No related tags found
1 merge request!16Withtime
#ifndef SCHEDULER_H
#define SCHEDULER_H
int schedulerInit(); // add the IDLE task with lowest priority and first USER task maybe
//int schedulerInit(); // add the IDLE task with lowest priority and first USER task maybe
int pushToScheduler (KernelStruct* Colonel, TD* Task);
//int pushToScheduler (KernelStruct* Colonel, TD* Task);
TD* getNextTaskScheduler (KernelStruct* Colonel);
//TD* getNextTaskScheduler (KernelStruct* Colonel);
#endif
#include "scheduler.h"
int schedulerInit() {
return 0;
} // add the IDLE task with lowest priority and first USER task maybe
// int schedulerInit() {
// return 0;
// } // add the IDLE task with lowest priority and first USER task maybe
int pushToScheduler (KernelStruct* Colonel, TD* Task) {
return 0;
}
// int pushToScheduler (KernelStruct* Colonel, TD* Task) {
// return 0;
// }
TD* getNextTaskScheduler (KernelStruct* Colonel) {
return NULL;
}
// TD* getNextTaskScheduler (KernelStruct* Colonel) {
// return NULL;
// }
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