[Linux-hls-cvs] hls/include rsv.h,1.2,1.3
Status: Pre-Alpha
Brought to you by:
lucabe
|
From: <lu...@us...> - 2003-11-08 10:34:35
|
Update of /cvsroot/linux-hls/hls/include
In directory sc8-pr-cvs1:/tmp/cvs-serv6094/include
Modified Files:
rsv.h
Log Message:
Lot of changes....
- Unbreak the debugging stuff
- Some random cleanups
- Fixes in the RR scheduler (I hope... MAXIMUM_PRIORITY does not seem to be
a valid priority)
- Allow the RES scheduler to be scheduled (there's a fixme: some functions
still have to be properly implemented)
- change Q e T from long long to long in the RES scheduler
- Implement the "rt scheduler" stuff
Index: rsv.h
===================================================================
RCS file: /cvsroot/linux-hls/hls/include/rsv.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** rsv.h 6 Nov 2002 09:29:02 -0000 1.2
--- rsv.h 8 Nov 2003 10:34:31 -0000 1.3
***************
*** 9,15 ****
HLS_BOOL BeginRes;
HLS_BOOL Soft;
! unsigned long long int Amount;
! unsigned long long int Period;
! void *UserThreadHandle;
};
--- 9,14 ----
HLS_BOOL BeginRes;
HLS_BOOL Soft;
! unsigned long int Amount;
! unsigned long int Period;
};
|