Annotation of ADD_ver_10/Planificador.c, revision 1.1
1.1 ! rico 1: /********************************************************************/
! 2: /* Planificador.c */
! 3: /* */
! 4: /* Copyright (c) 1997-2006 Rafael Rico (rafael.rico@uah.es) */
! 5: /* */
! 6: /* This file is part of ADD version 5.10. */
! 7: /* */
! 8: /* ADD is free software; you can redistribute it and/or modify */
! 9: /* it under the terms of the GNU General Public License as */
! 10: /* published by the Free Software Foundation; either version 2 of */
! 11: /* the License, or (at your option) any later version. */
! 12: /* */
! 13: /* ADD is distributed in the hope that it will be useful, */
! 14: /* but WITHOUT ANY WARRANTY; without even the implied warranty of */
! 15: /* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
! 16: /* GNU General Public License for more details. */
! 17: /* */
! 18: /* You should have received a copy of the GNU General Public */
! 19: /* License along with ADD; if not, write to the Free Software */
! 20: /* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA */
! 21: /* 02111-1307 USA */
! 22: /* */
! 23: /* --------------------------- History --------------------------- */
! 24: /* */
! 25: /* Revision 1.2. 01/2006 */
! 26: /* Added GPL License and JavaDoc style documentation */
! 27: /* */
! 28: /* Revision 1.1. 09/2005 */
! 29: /* Initial Revision */
! 30: /* */
! 31: /********************************************************************/
! 32:
! 33:
! 34: /******************************************************************************/
! 35: /* MÓDULO: Planificador.c */
! 36: /* */
! 37: /* Este módulo contiene las funciones que asignan recursos de ejecución a las */
! 38: /* instrucciones, planifican la lista de orden parcial y realizan los */
! 39: /* cálculos de tiempos de acuerdo a diferentes algoritmos de planificación. */
! 40: /******************************************************************************/
! 41: /* Fecha: 19 de septiembre de 2005 */
! 42: /******************************************************************************/
! 43:
! 44:
! 45: /* sin hacer */
! 46: /* función que calcula el tiempo de ejecución */
! 47:
! 48: double CalcularTiempo()
! 49: {
! 50: double t;
! 51:
! 52: t = 0.123456789;
! 53:
! 54: return t;
! 55: }
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>