Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 567 → Rev 568

/shark/trunk/kernel/grpcreat.c
18,11 → 18,11
 
/**
------------
CVS : $Id: grpcreat.c,v 1.8 2004-04-18 18:59:28 giacomo Exp $
CVS : $Id: grpcreat.c,v 1.9 2004-04-19 12:36:39 giacomo Exp $
 
File: $File$
Revision: $Revision: 1.8 $
Last update: $Date: 2004-04-18 18:59:28 $
Revision: $Revision: 1.9 $
Last update: $Date: 2004-04-19 12:36:39 $
------------
 
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;