Blame |
Last modification |
View Log
| RSS feed
/*
* Project: S.Ha.R.K.
*
* Coordinators:
* Giorgio Buttazzo <giorgio@sssup.it>
* Paolo Gai <pj@gandalf.sssup.it>
*
* Authors :
* Paolo Gai <pj@gandalf.sssup.it>
* (see the web pages for full authors list)
*
* ReTiS Lab (Scuola Superiore S.Anna - Pisa - Italy)
*
* http://www.sssup.it
* http://retis.sssup.it
* http://shark.sssup.it
*/
/**
------------
CVS : $Id: mymod.h,v 1.1 2004-07-05 14:17:12 pj Exp $
File: $File$
Revision: $Revision: 1.1 $
Last update: $Date: 2004-07-05 14:17:12 $
------------
**/
/*
* Copyright (C) 2001 by Paolo Gai
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
/* put here a description of the module */
/* change MYMOD with GROUPXXX, where XXX is your group number */
#ifndef __MYMOD_H__
#define __MYMOD_H__
#include <valmodel.h>
#include <kernel/model.h>
// maybe you need here some include file
// then... we define a new Task Model without modifying
// the standard kernel distribution
// pick a code and a version not used into the file include/modules/codes.h
#define MYMOD_LEVELNAME "GROUPXXX Scheduling Module"
#define MYMOD_LEVEL_CODE 167
#define MYMOD_LEVEL_VERSION 1
// if the module raises some new exception list them here
// pincking up unused numbers from include/bits/errno.h
/*+ Registration function:
int parameter Options to be used in this level instance... +*/
void MYMOD_register_level(int parameter);
/*+ this function will accept or reject tasks during group creation +*/
int MYMOD_taskaccepted(PID p);
/*+ returns the current total value +*/
int MYMOD_getvalue(LEVEL l);
/* here you can also put some other functions similar for example
to the EDF_usedbandwidth() in the file include/modules/edf.h */
#endif