Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 1376 → Rev 1377

/demos/trunk/base/intsem.c
34,7 → 34,7
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*
* CVS : $Id: intsem.c,v 1.1 2002-11-11 08:22:45 pj Exp $
* CVS : $Id: intsem.c,v 1.2 2004-04-17 11:36:14 giacomo Exp $
 
this test is a simple main() function with one other task.
 
80,6 → 80,8
NRT_TASK_MODEL m;
PID p2,p3;
 
struct timespec t;
 
nrt_task_default_model(m);
nrt_task_def_group(m,1);
 
97,5 → 99,11
 
group_activate(1);
 
do {
sys_gettime(&t);
} while (t.tv_sec < 10);
sys_end();
 
return 0;
}