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.9 required=5.0 tests=BAYES_00,FORGED_GMAIL_RCVD, FREEMAIL_FROM autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: 103376,ef0a2057d81387f4 X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!postnews.google.com!z14g2000cwz.googlegroups.com!not-for-mail From: "mferracini" Newsgroups: comp.lang.ada Subject: Re: Generic,procedure and visibility. Date: 25 Nov 2004 08:53:57 -0800 Organization: http://groups.google.com Message-ID: <1101401637.028058.169190@z14g2000cwz.googlegroups.com> References: <1101400573.954385.108150@f14g2000cwb.googlegroups.com> NNTP-Posting-Host: 213.215.153.30 Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Trace: posting.google.com 1101401640 27032 127.0.0.1 (25 Nov 2004 16:54:00 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Thu, 25 Nov 2004 16:54:00 +0000 (UTC) In-Reply-To: <1101400573.954385.108150@f14g2000cwb.googlegroups.com> User-Agent: G2/0.2 Complaints-To: groups-abuse@google.com Injection-Info: z14g2000cwz.googlegroups.com; posting-host=213.215.153.30; posting-account=OjhBzA0AAAC7IWpsLrvIpzjmXdzmh93y Xref: g2news1.google.com comp.lang.ada:6467 Date: 2004-11-25T08:53:57-08:00 List-Id: now see this new case: package Generico is generic with procedure Lavora; package Nascosto is procedure Inizia; end Nascosto; end Generico; package body Generico is package body Nascosto is task type Pippo is entry Fai; end Pippo; task body Pippo is begin accept Fai; Lavora; end Pippo; type P_Pippo is access Pippo; x:p_pippo; procedure Inizia is begin X:=new Pippo; X.Fai; end Inizia; end Nascosto; begin null; end Generico; -------------------------- evry time that call i [thing that is a new generico.nascosto].inizia a new task born. so i want to create a array of this task for manage them. how i can do? thanks