have device logic go in withDevices
[mTask.git] / client / task.c
index 050784c..9206a13 100644 (file)
@@ -83,7 +83,6 @@ struct task *task_next(struct task *t)
 void task_delete(uint8_t c)
 {
        debug("Going to delete task: %i", c);
-       debug("mem_task: %p", mem_task);
        struct task *t = task_head();
        while(t != NULL){
                if(t->taskid == c){
@@ -105,5 +104,4 @@ void task_delete(uint8_t c)
                //Decrement the spacepointer
                mem_task -= end-start;
        }
-       debug("mem_task: %p", mem_task);
 }