[Linux-hls-cvs] hls/simul/include interface-data.h,1.1,1.2 os.h,1.2,1.3
Status: Pre-Alpha
Brought to you by:
lucabe
|
From: <lu...@us...> - 2003-02-10 16:24:26
|
Update of /cvsroot/linux-hls/hls/simul/include
In directory sc8-pr-cvs1:/tmp/cvs-serv20402/simul/include
Modified Files:
interface-data.h os.h
Log Message:
- Some work in the workload generator
- New docs directory + doc about my power management proposal
Index: interface-data.h
===================================================================
RCS file: /cvsroot/linux-hls/hls/simul/include/interface-data.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** interface-data.h 25 Nov 2002 11:33:33 -0000 1.1
--- interface-data.h 10 Feb 2003 16:23:47 -0000 1.2
***************
*** 56,60 ****
long long int total_remaining_cpu_time;
long long int total_desired_cpu_time;
! long long int time_until_blocking;
long long int ready_time;
int kind;
--- 56,62 ----
long long int total_remaining_cpu_time;
long long int total_desired_cpu_time;
! long long int ci;
! long long int (*c)(void); /* Execution times generator */
! long long int (*iat)(void); /* Interarrival times generator */
long long int ready_time;
int kind;
Index: os.h
===================================================================
RCS file: /cvsroot/linux-hls/hls/simul/include/os.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** os.h 13 Dec 2002 11:26:13 -0000 1.2
--- os.h 10 Feb 2003 16:23:47 -0000 1.3
***************
*** 1,5 ****
int random_priority(void);
struct sim_task_struct *make_new_thread(long long int create_time,
! long long int cpu_time, long long int job_exec_time, int prio);
void thread_unblock(struct sim_task_struct *t);
void thread_block(struct sim_task_struct *t);
--- 1,7 ----
int random_priority(void);
struct sim_task_struct *make_new_thread(long long int create_time,
! long long int cpu_time, long long int (*job_exec_time)(void),
! long long int (*job_interarrival_time)(void),
! int prio);
void thread_unblock(struct sim_task_struct *t);
void thread_block(struct sim_task_struct *t);
|