[Mono-list] Is there a mechanism to precompile a method?
Holger Arnold
harnold@gmx.de
Thu, 12 Sep 2002 13:54:50 +0200
> I think the garbage collector is a more worrisome problem for writing
> real-time applications with Mono. There's a lot of research on
> real-time garbage collectors, but I've never used one.
You are right, the garbage collector is a problem. The code we will execute
under real-time conditions is somewhat constrained in the way it allocates
memory. We hope that this can be used to prevent a garbage collection to
occur for threads being executed in real-time.
Of course, we still need to do some research in this area. Carl, do you know
of some useful references on real-time garbage collection?
I was not yet able to look at the gc interface of Mono. How difficult would
it be to switch from the currently used Boehm-Weiser collector to a different
one? Could this be done for single domains or threads?
Holger