Browse thread
[Caml-list] Real Time Ocaml
[
Home
]
[ Index:
by date
|
by threads
]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
| Date: | -- (:) |
| From: | Karl Zilles <zilles@1...> |
| Subject: | Re: [Caml-list] Real Time Ocaml |
Brian Hurt wrote: > The only thing non-realtime in Ocaml is the garbage collection. There are > realtime garbage collectors, which do a certain amount of work every > allocation, so that a) the cost of every allocation is constant (or close > enough), and b) that all the work the collector ever needs to do is > distributed evenly among the allocations. The current collector, while > perfect for non-realtime tasks (due to it's small average cost) is > horrible for realtime because of the huge difference between the common > case (5 instructions) and the worst case (mass collection)> In a realtime garbage collector, how can you prove that you are freeing unused memory as fast as you allocate it? In your attempt to put a boundry on time, doesn't it open up the possiblility that you might run out of space (even if your program has constant memory usage). ------------------- To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/ Beginner's list: http://groups.yahoo.com/group/ocaml_beginners