Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 565 → Rev 566

/shark/trunk/kernel/grpcreat.c
18,11 → 18,11
 
/**
------------
CVS : $Id: grpcreat.c,v 1.7 2004-03-10 14:51:42 giacomo Exp $
CVS : $Id: grpcreat.c,v 1.8 2004-04-18 18:59:28 giacomo Exp $
 
File: $File$
Revision: $Revision: 1.7 $
Last update: $Date: 2004-03-10 14:51:42 $
Revision: $Revision: 1.8 $
Last update: $Date: 2004-04-18 18:59:28 $
------------
 
This file contains:
306,9 → 306,9
//kern_printf("[c%i %i]",i,proc_table[i].context);
/* Count the task if it is an Application or System Task... */
if (!(m->control & SYSTEM_TASK))
if (m->control & SYSTEM_TASK)
task_counter++;
else if (!(m->control & NO_KILL))
else if (m->control & NO_KILL)
system_counter++;
 
return 0;