[Linux-hls-cvs] hls/simul/loads continuous.c,1.1,1.2 periodic.c,1.1,1.2 standard.c,1.1,1.2
Status: Pre-Alpha
Brought to you by:
lucabe
|
From: <lu...@us...> - 2003-02-25 09:19:02
|
Update of /cvsroot/linux-hls/hls/simul/loads In directory sc8-pr-cvs1:/tmp/cvs-serv25577/simul/loads Modified Files: continuous.c periodic.c standard.c Log Message: Updated the license Index: continuous.c =================================================================== RCS file: /cvsroot/linux-hls/hls/simul/loads/continuous.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** continuous.c 10 Feb 2003 16:23:47 -0000 1.1 --- continuous.c 25 Feb 2003 09:18:58 -0000 1.2 *************** *** 1,2 **** --- 1,14 ---- + /* + * Copyright (c) 2002 Luca Abeni + * + * Module Name: loads/continuous.c + * Abstract: Workload generator for the Simulator Backend. + * Task set composed of ``continuous tasks'', that + * are always backlogged (never block or unblock). + * Author: Luca Abeni 2-Feb-2002 + * + * This is free software; see GPL.txt + */ + #include <stdio.h> #include <stdlib.h> Index: periodic.c =================================================================== RCS file: /cvsroot/linux-hls/hls/simul/loads/periodic.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** periodic.c 10 Feb 2003 16:23:48 -0000 1.1 --- periodic.c 25 Feb 2003 09:18:58 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * Copyright (c) 2002 Luca Abeni + * + * Module Name: loads/periodic.c + * Abstract: Workload generator for the Simulator Backend. + * Task set composed of ``periodic tasks'', that + * execute for a fixed time C and then block until the + * beginning of the next period. + * Author: Luca Abeni 2-Feb-2002 + * + * This is free software; see GPL.txt + */ + #include <stdio.h> #include <stdlib.h> Index: standard.c =================================================================== RCS file: /cvsroot/linux-hls/hls/simul/loads/standard.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** standard.c 10 Feb 2003 16:23:49 -0000 1.1 --- standard.c 25 Feb 2003 09:18:58 -0000 1.2 *************** *** 1,2 **** --- 1,13 ---- + /* + * Copyright (c) 2002 Luca Abeni + * + * Module Name: loads/periodic.c + * Abstract: Workload generator for the Simulator Backend. + * Original HLS workload. + * Author: Luca Abeni 2-Feb-2002 + * + * This is free software; see GPL.txt + */ + #include <stdio.h> #include <stdlib.h> |