Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 1563 → Rev 1565

/demos/trunk/sharkDecoderWithFSF/gvideo.c
144,16 → 144,19
********************************************************************************************/
void *overLoadTask(void *arg)
{
int i;
int i=0;
char tmp[100];
while(1)
{
for(i = 0; i < 98; i++)
{
//for(i = 0; i < 98; i++)
// {
sprintf(tmp, "hello from overLoad for the %d time", i);
grx_text(tmp,380,380,rgb16(255,255,255),0);
}
fsf_schedule_timed_job(NULL, NULL, NULL, NULL, NULL);
grx_text(tmp,380,380+exec_shadow*10,rgb16(255,255,255),0);
//cprintf(tmp);
// }
i++;
//fsf_schedule_timed_job(NULL, NULL, NULL, NULL, NULL);
task_endcycle();
}
}