From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-0.3 required=5.0 tests=BAYES_00, REPLYTO_WITHOUT_TO_CC autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,82095253a0df24a1 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2004-01-17 16:43:18 PST Path: archiver1.google.com!news2.google.com!fu-berlin.de!uni-berlin.de!adsl-213-200-246-247.cybernet.CH!not-for-mail From: Vinzent 'Gadget' Hoefler Newsgroups: comp.lang.ada Subject: Re: "everybody in the control room is using Java" Date: Sun, 18 Jan 2004 01:41:20 +0100 Organization: JeLlyFish software Message-ID: References: <1074275354.853176@master.nyc.kbcfp.com> <49cbf610.0401170658.55862afb@posting.google.com> Reply-To: v.hoefler@acm.org NNTP-Posting-Host: adsl-213-200-246-247.cybernet.ch (213.200.246.247) Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable X-Trace: news.uni-berlin.de 1074386596 16693420 213.200.246.247 ([175126]) X-Newsreader: Forte Agent 1.8/32.548 Xref: archiver1.google.com comp.lang.ada:4512 Date: 2004-01-18T01:41:20+01:00 List-Id: Dmytry Lavrov wrote: >Should be assumed that worsest possible GC(garbage collection) >operations could happen between deadlines. IIRC, in RTJ you can turn off and/or call the GC explicitely. Also, there is a concept of so-called immortal memory that is by definition excluded from any GC-algorithms (because it exists "forever") and the NoHeapRealtimeThread classes are allowed to interrupt any on-going garbage collection. Vinzent.