Subversion Repositories shark

Compare Revisions

Regard whitespace Rev 1546 → Rev 1547

/demos/trunk/base/aster6.c
34,7 → 34,7
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*
* CVS : $Id: aster6.c,v 1.5 2004-04-21 14:55:05 giacomo Exp $
* CVS : $Id: aster6.c,v 1.6 2005-01-08 14:31:38 pj Exp $
 
this is a part of the classic Hartik demo Aster.
 
338,7 → 338,7
void fine(KEY_EVT *e)
{
 
sys_end();
exit(0);
 
}
 
400,8 → 400,7
p1 = task_create("Aster",aster,&m,NULL);
if (p1 == -1) {
sys_shutdown_message("test7.c(main): Could not create task <aster> ...");
sys_end();
return 0;
exit(1);
}
 
hard_task_def_mit(m,500000);
409,8 → 408,7
p2 = task_create("Clock",clock,&m,NULL);
if (p2 == -1) {
sys_shutdown_message("test7.c(main): Could not create task <Clock> ...");
sys_end();
return 0;
exit(1);
}
 
// p3 = task_create("JetControl",jetcontrol,&m_nrt,NULL);
417,8 → 415,7
p3 = task_create("JetControl",jetcontrol,&m_aper,NULL);
if (p3 == -1) {
sys_shutdown_message("test7.c(main): Could not create task <JetControl> ...");
sys_end();
return 0;
exit(1);
}
 
task_nopreempt();