Difference between revisions of "Memory Management"

From Suhrid.net Wiki
Jump to navigationJump to search
(Created page with "= Intro = * Running the GC thread can have an impact on the response time of a time critical thread. * Category:RealTimeJava")
 
Line 1: Line 1:
 
= Intro =
 
= Intro =
  
* Running the GC thread can have an impact on the response time of a time critical thread.
+
* Running garbage collection can have an impact on the response time of a time critical thread.
 +
* It is necessary to have memory that is not subject to GC.
 
*  
 
*  
  
 
[[Category:RealTimeJava]]
 
[[Category:RealTimeJava]]

Revision as of 16:49, 1 December 2011

Intro

  • Running garbage collection can have an impact on the response time of a time critical thread.
  • It is necessary to have memory that is not subject to GC.