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,d154e1596a6ac2d9 X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news4.google.com!border1.nntp.dca.giganews.com!nntp.giganews.com!local01.nntp.dca.giganews.com!nntp.comcast.com!news.comcast.com.POSTED!not-for-mail NNTP-Posting-Date: Sun, 16 Oct 2005 23:10:00 -0500 From: tmoran@acm.org Newsgroups: comp.lang.ada Subject: Re: Newbie: Task parametering References: X-Newsreader: Tom's custom newsreader Message-ID: <1rKdnYiFU5mFuc7eRVn-hA@comcast.com> Date: Sun, 16 Oct 2005 23:10:00 -0500 NNTP-Posting-Host: 24.6.102.223 X-Trace: sv3-818wFWmcu5+RPQVqq+bS2U9oB29mNexE0eqDBvgnE5X8jFZ25J/veolDTT9YJ4kv21B1FowaYixEOQD!U2JluV+oQ7LdZ1t2pUGVlEg5oSd0TTeoGsjV+Vi88SR7caCbzovKuWQPlGnQObpw5a/U9WrCzQcw X-Complaints-To: abuse@comcast.net X-DMCA-Complaints-To: dmca@comcast.net X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly X-Postfilter: 1.3.32 Xref: g2news1.google.com comp.lang.ada:5736 Date: 2005-10-16T23:10:00-05:00 List-Id: > Things of type Data_Handle point to heap-allocated objects (it says > "is access" not "is access all"), so you don't need any "aliased". Oops, that's not right. You don't need any "aliased" unless you have an "access all" type which can point to a component of a Task_Data record. You apparently don't have, and presumably don't need, such a thing, so you can drop the "aliased"s. > Another_Task := new A_Task(Data_For_Task); Yes, should create and start a new A_Task with an access to a Task_Data record as its discriminant.