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=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,ec570d1a83fda83c,start X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-07-25 01:57:22 PST Path: archiver1.google.com!newsfeed.google.com!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!newsfeed.icl.net!diablo.netcom.net.uk!netcom.net.uk!btnet-peer!btnet!newsfeed.bt.es!news.bt.es!not-for-mail From: carlos_aganzo@terra.es (Carlos Aganzo) Newsgroups: comp.lang.ada Subject: Problem with tasks Date: Wed, 25 Jul 2001 08:52:03 GMT Organization: BT Tel. Netnews service (readers) Message-ID: <3b5e887e.10671695@news.bt.es> NNTP-Posting-Host: 212.49.167.81 Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Trace: titan.bt.es 996051092 26555 212.49.167.81 (25 Jul 2001 08:51:32 GMT) X-Complaints-To: abuse@bt.es NNTP-Posting-Date: 25 Jul 2001 08:51:32 GMT X-Newsreader: Forte Free Agent 1.21/32.243 Xref: archiver1.google.com comp.lang.ada:10552 Date: 2001-07-25T08:51:32+00:00 List-Id: I need to create a new instance of the same task from itself, something like type acell is access cell; task body cell is anon: acell; begin anon := new cell; -- more code end cell; How could I do this? Is there any way to create anonymous tasks instances, Java-like? Thanks in advance. Carlos.