Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 1546 → Rev 1547

/demos/trunk/base/aster8.c
34,7 → 34,7
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*
* CVS : $Id: aster8.c,v 1.4 2004-04-21 14:55:05 giacomo Exp $
* CVS : $Id: aster8.c,v 1.5 2005-01-08 14:31:38 pj Exp $
 
Test for Sporadic Server (ss):
 
357,7 → 357,7
void fine(KEY_EVT *e)
{
 
sys_end();
exit(0);
 
}
 
443,7 → 443,7
p1 = task_create("Aster",aster,&m,NULL);
if (p1 == -1) {
sys_shutdown_message("test7.c(main): Could not create task <aster> ...");
sys_end();
exit(1);
return 0;
}
 
452,7 → 452,7
p2 = task_create("Clock",clock,&m,NULL);
if (p2 == -1) {
sys_shutdown_message("test7.c(main): Could not create task <Clock> ...");
sys_end();
exit(1);
return 0;
}
 
459,7 → 459,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();
exit(1);
return 0;
}
 
466,7 → 466,7
p4 = task_create("MyDummyAper",(void *(*)(void*))mydummyaper,&m_aper,NULL);
if (p4 == -1) {
sys_shutdown_message("Could not create task <MyDummyAper> ...");
sys_end();
exit(1);
return 0;
}
 
473,7 → 473,7
p5 = task_create("MyDummyNRT",(void *(*)(void*))mydummynrt,&m_nrt,NULL);
if (p5 == -1) {
sys_shutdown_message("Could not create task <MyDummyNRT> ...");
sys_end();
exit(1);
return 0;
}