Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 1456 → Rev 1550

/demos/trunk/orbit/orbit.c
18,11 → 18,11
 
/*
------------
CVS : $Id: orbit.c,v 1.8 2004-05-23 19:30:33 giacomo Exp $
CVS : $Id: orbit.c,v 1.9 2005-01-08 14:34:48 pj Exp $
 
File: $File$
Revision: $Revision: 1.8 $
Last update: $Date: 2004-05-23 19:30:33 $
Revision: $Revision: 1.9 $
Last update: $Date: 2005-01-08 14:34:48 $
------------
*/
 
227,7 → 227,7
pid = task_create("massa", massa, &m, NULL);
if (pid == NIL) {
sys_shutdown_message("Could not create task");
sys_end();
exit(1);
}
task_activate(pid);
}
235,7 → 235,7
 
} while (c != ESC);
 
sys_end();
exit(1);
 
return 0;
}
/demos/trunk/orbit/initfile.c
122,7 → 122,7
shutdown_task_PID = task_create("Shutdown Task",shutdown_task_body,&nrt,NULL);
if (shutdown_task_PID == NIL) {
sys_shutdown_message("Error: Cannot create shutdown task\n");
sys_end();
exit(1);
}
 
}
149,7 → 149,7
cprintf("Error: Cannot open graphical mode\n");
KEYB26_close();
INPUT26_close();
sys_end();
exit(1);
}
FB26_use_grx(FRAME_BUFFER_DEVICE);
193,8 → 193,6
 
sys_shutdown_message("-- S.Ha.R.K. Closed --\n");
 
sys_abort_shutdown(0);
 
return NULL;
 
}