Open In App

Tasks in Real Time systems

The system is subjected to real-time, i.e. response should be guaranteed within a specified timing constraint or system should meet the specified deadline. For example flight control systems, real-time monitors, etc. 

There are four types of tasks in real-time systems: 



  1. Periodic tasks
  2. Dynamic tasks
  3. Critical task
  4. Non-critical task

For example: Consider the task Ti with period = 5 and execution time = 3
Phase is not given so, assume the release time of the first job as zero. So the job of this task is first released at t = 0 then it executes for 3s and then the next job is released at t = 5 which executes for 3s and then the next job is released at t = 10. So jobs are released at t = 5k where k = 0, 1, . . ., n



Hyper period of a set of periodic tasks is the least common multiple of periods of all the tasks in that set. For example, two tasks T1 and T2 having period 4 and 5 respectively will have a hyper period, H = lcm(p1, p2) = lcm(4, 5) = 20. The hyper period is the time after which pattern of job release times starts to repeat.

Critical Tasks are those whose opportune executions are basic. In the event that cutoff times are missed, calamities happen.

For instance, life-emotionally supportive networks and the steadiness control of airplane. On the off chance that basic errands are executed at a higher recurrence, it is fundamental.

Non-critical Tasks are genuine times assignments. As the name infers, they are not basic to the application. Be that as it may, they can manage time, changing information, and consequently they are futile on the off chance that not finished inside a cutoff time. The objective of booking these assignments is to expand the level of occupations effectively executed inside their cutoff times.

Jitter: Sometimes actual release time of a job is not known. Only know that ri is in a range [ ri-, ri+ ]. This range is known as release time jitter. Here ri– is how early a job can be released and ri+ is how late a job can be released. Only the range [ ei-, ei+ ] of the execution time of a job is known. Here ei– is the minimum amount of time required by a job to complete its execution and ei+ is the maximum amount of time required by a job to complete its execution. 

Precedence Constraint of Jobs: Jobs in a task are independent if they can be executed in any order. If there is a specific order in which jobs in a task have to be executed then jobs are said to have precedence constraints. For representing precedence constraints of jobs a partial order relation < is used. This is called precedence relation. A job Ji is a predecessor of job Jj if Ji < Jj i.e. Jj cannot begin its execution until Ji completes. Ji is an immediate predecessor of Jj if Ji < Jj and there is no other job Jk such that Ji < Jk < Jj. Ji and Jj are independent if neither Ji < Jj nor Jj < Ji is true. 
An efficient way to represent precedence constraints is by using a directed graph G = (J, <) where J is the set of jobs. This graph is known as the precedence graph. Jobs are represented by vertices of the graph and precedence constraints are represented using directed edges. If there is a directed edge from Ji to Jj then it means that Ji is the immediate predecessor of Jj. For example: Consider a task T having 5 jobs J1, J2, J3, J4, and J5 such that J2 and J5 cannot begin their execution until J1 completes and there are no other constraints. 

The precedence constraints for this example are: 
J1 < J2 and J1 < J5  

Set representation of precedence graph: 

  1. < (1) = { }
  2. < (2) = {1}
  3. < (3) = { }
  4. < (4) = { }
  5. < (5) = {1}

Consider another example where a precedence graph is given and you have to find precedence constraints 

From the above graph, we derive the following precedence constraints:  

  1. J1 < J2
  2. J2 < J3
  3. J2 < J4
  4. J3 < J4

FAQ:

What are some common examples of real-time systems?
Industries like aviation, healthcare, manufacturing, and telecommunications make use of real-time systems. The employed systems incorporate flight control applications, real-time monitors in healthcare facilities, industrial control systems, and real-time communication systems.

What is the difference between aperiodic and sporadic tasks?
Tasks that are aperiodic are not released on a regular schedule, whereas sporadic tasks are released at irregular but anticipated intervals. Aperiodic tasks may have lenient or nonexistent deadlines, while sporadic tasks are required to meet strict deadlines.

What is jitter in real-time systems?
The time release or execution of a task can be affected by a fluctuation known as Jitter. This phenomenon can be triggered by multiple factors including network delays, software errors, or hardware limitations. Struggling to manage Jitter can have a tremendous effect on real-time systems, so precise timing control is crucial.

How are precedence constraints represented in real-time systems?
Precedence constraints are represented using a directed graph called a precedence graph. Each job is represented by a vertex, and the precedence constraints are represented by directed edges between vertices. If there is a directed edge from job A to job B, it means that A must complete before B can begin.

What is the hyper period of a set of periodic tasks?
The hyper period of a set of periodic tasks is the least common multiple of their periods. It is the smallest time after which the pattern of job release times for all tasks in the set repeats. The hyper period is an important parameter in real-time scheduling, as it determines the scheduling cycle for the tasks.


Article Tags :