[Linux-hls-cvs] qosman/us/include funcs.h,1.1.1.1,1.2 global.h,1.1.1.1,1.2 local.h,1.1.1.1,1.2
Status: Pre-Alpha
Brought to you by:
lucabe
|
From: Luca A. <lu...@us...> - 2004-04-09 13:53:21
|
Update of /cvsroot/linux-hls/qosman/us/include In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23177/us/include Modified Files: funcs.h global.h local.h Log Message: - Some cleanups in the demos - New "text only" demo (will be used to test the pps model) - Interface change (names...) - Fix bug in feeback functions statistics - Resynch with my local tree (too many changes to mention) Index: local.h =================================================================== RCS file: /cvsroot/linux-hls/qosman/us/include/local.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** local.h 21 Feb 2004 13:01:51 -0000 1.1.1.1 --- local.h 9 Apr 2004 13:39:58 -0000 1.2 *************** *** 15,17 **** --- 15,20 ---- #include <req.h> #include <qos.h> + + int internal_howlate(ID dummy); + int internal_budget(ID dummy); #endif /* __LOCAL_H__ */ Index: global.h =================================================================== RCS file: /cvsroot/linux-hls/qosman/us/include/global.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** global.h 21 Feb 2004 13:01:51 -0000 1.1.1.1 --- global.h 9 Apr 2004 13:39:58 -0000 1.2 *************** *** 12,18 **** #include <ps.h> - //#include <req.h> - //#include <qos.h> - int server_init(REAL psu, REAL psq, REAL init_rmu); --- 12,15 ---- Index: funcs.h =================================================================== RCS file: /cvsroot/linux-hls/qosman/us/include/funcs.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** funcs.h 21 Feb 2004 13:01:51 -0000 1.1.1.1 --- funcs.h 9 Apr 2004 13:39:58 -0000 1.2 *************** *** 2,8 **** #define __FUNCS_H__ #include <basetype.h> - /* - #include <stdio.h> - */ #define max(a,b) (((a) > (b)) ? (a) : (b)) --- 2,5 ---- |