Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Garbage Collector in Real-Time System

I'm new to C#/Java and plan to prototype it for soft real-time system.

If I wrote C#/Java app just like how I do in C++ in terms of memory management, that is, I explicitly "delete" the objects that I no longer use, then would the app still be affected by garbage collector? If so, how does it affect my app?

Sorry if this sounds like an obvious answer, but being new, I want to be thorough.

like image 783
sivabudh Avatar asked Dec 02 '22 07:12

sivabudh


1 Answers

Take a look at IBM's Metronome, their garbage collector for hard real-time systems.

like image 75
Sam Harwell Avatar answered Dec 29 '22 00:12

Sam Harwell