* Calculates the cpu load of a task(L(t) where t is a task).
* L(t)
*
* Note: Each task t has a WCET C(t) and given (assumed) inter-arrival time A(t). The CPU request (or load) inferred by a task is L(t) = C(t)/A(t). Ask yourself, what is the consequence of C(t) > A(t)?
* Note: Each task t has a WCET C(t) and given (assumed) inter-arrival time A(t). The CPU request (or load) inferred by a task is L(t) = C(t)/A(t). Ask yourself, what is the consequence of C(t) > A(t)?
* Answer: If C(t) > A(t) then the cpu load of task t is more then the available cpu power in the
* worst case. And the task t will not be able to finish in time in the worst case.