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-Thread: 103376,90108ed846e3f1bf X-Google-Attributes: gid103376,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news2.google.com!news1.google.com!newsfeed2.dallas1.level3.net!news.level3.com!panix!bloom-beacon.mit.edu!newsswitch.lcs.mit.edu!nntp.TheWorld.com!not-for-mail From: Robert A Duff Newsgroups: comp.lang.ada Subject: Re: Language lawyer question: task activation Date: Fri, 20 Feb 2009 09:16:21 -0500 Organization: The World Public Access UNIX, Brookline, MA Message-ID: References: <0Ludnf3mRdnyHgPUnZ2dnUVZ8vGdnZ2d@posted.plusnet> NNTP-Posting-Host: shell01.theworld.com Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: pcls6.std.com 1235139382 3074 192.74.137.71 (20 Feb 2009 14:16:22 GMT) X-Complaints-To: abuse@TheWorld.com NNTP-Posting-Date: Fri, 20 Feb 2009 14:16:22 +0000 (UTC) User-Agent: Gnus/5.1008 (Gnus v5.10.8) Emacs/21.3 (irix) Cancel-Lock: sha1:xARXZQ+H4Uz0qSV1UsTI6zF8cgw= Xref: g2news1.google.com comp.lang.ada:3719 Date: 2009-02-20T09:16:21-05:00 List-Id: Robert_Matthews writes: >> procedure Do_It (X : TType) is >> begin >> X.E1; >> end Do_It; >> >> begin >> Do_It (Func); >> end Test; > > But isn't there another issue here: task types are limited, therefore Func > is a constructor function, but in what object does it construct its returned > value? In the formal parameter X of Do_It. - Bob