Subversion Repositories shark

Compare Revisions

Regard whitespace Rev 1264 → Rev 1266

/demos/trunk/loader/common/nload.c
58,6 → 58,13
end_oneshot_task();
 
#ifdef TASK_OUTPUT
#ifdef OS_SHARK
sprintf(tmp,"[--END--]");
printf_xy((get_current_exec_task() % 5) * 9 + 34,get_current_exec_task() / 5 + 5, GREEN, tmp);
#endif
#endif
 
return NULL;
}
115,6 → 122,13
 
end_periodic_task();
#ifdef TASK_OUTPUT
#ifdef OS_SHARK
sprintf(tmp,"[--END--]");
printf_xy((get_current_exec_task() % 5) * 9 + 34,get_current_exec_task() / 5 + 5, GREEN, tmp);
#endif
#endif
return NULL;
}
168,6 → 182,13
 
end_back_task();
#ifdef TASK_OUTPUT
#ifdef OS_SHARK
sprintf(tmp,"[--END--]");
printf_xy((get_current_exec_task() % 5) * 9 + 34,get_current_exec_task() / 5 + 5, GREEN, tmp);
#endif
#endif
return NULL;
}