Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 689 → Rev 690

/shark/trunk/include/kernel/func.h
21,11 → 21,11
 
/**
------------
CVS : $Id: func.h,v 1.15 2004-05-12 08:09:53 mauro Exp $
CVS : $Id: func.h,v 1.16 2004-05-26 15:34:49 anton Exp $
 
File: $File$
Revision: $Revision: 1.15 $
Last update: $Date: 2004-05-12 08:09:53 $
Revision: $Revision: 1.16 $
Last update: $Date: 2004-05-26 15:34:49 $
------------
 
Kernel functions:
501,6 → 501,9
/*+ Activate a task specified via pid returned from task_create +*/
int task_activate(PID pid);
/*+ Activate a task specified via pid from task_create at time t +*/
int task_activate_at(PID pid, struct timespec *t);
 
/*+ Kill a task specified via pid returned from task_create +*/
int task_kill(PID pid);
 
571,6 → 574,7
/*+ This primitives refers the group id which is supplied
by the application, not by the kernel +*/
int group_activate(WORD g);
int group_activate_at(WORD g, struct timespec *t);
int group_kill(WORD g);