Difference between revisions of "RealtimeThreads"

From Suhrid.net Wiki
Jump to navigationJump to search
(Created page with "= Intro = * Java has threads but they are not expressive enough to capture properties of real time activities. (e.g. deadline, cost, value etc.) * RT threads are also characteri...")
 
Line 3: Line 3:
 
* Java has threads but they are not expressive enough to capture properties of real time activities. (e.g. deadline, cost, value etc.)
 
* Java has threads but they are not expressive enough to capture properties of real time activities. (e.g. deadline, cost, value etc.)
 
* RT threads are also characterized by their execution patterns - periodic, sporadic, aperiodic. This has to be manually coded in standard Java threads.
 
* RT threads are also characterized by their execution patterns - periodic, sporadic, aperiodic. This has to be manually coded in standard Java threads.
 +
* Supporting RT Threads requires fundamental changes to the JVM.

Revision as of 07:20, 1 January 2012

Intro

  • Java has threads but they are not expressive enough to capture properties of real time activities. (e.g. deadline, cost, value etc.)
  • RT threads are also characterized by their execution patterns - periodic, sporadic, aperiodic. This has to be manually coded in standard Java threads.
  • Supporting RT Threads requires fundamental changes to the JVM.