diff --git a/include/scheduler.h b/include/scheduler.h index e6cba82abcef17ff5a03fb3639fd81c15a8ea170..0f76d0d6874a5e12d214b008d00208c77036dcf7 100644 --- a/include/scheduler.h +++ b/include/scheduler.h @@ -1,10 +1,10 @@ #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 diff --git a/src/libsrc/scheduler.c b/src/libsrc/scheduler.c index 644e49332fd9286f8ca4fcaa7e098638f019664a..1b389b55717f11156c3ca00837dcb06021d89517 100644 --- a/src/libsrc/scheduler.c +++ b/src/libsrc/scheduler.c @@ -1,13 +1,13 @@ #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; +// }