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,FREEMAIL_FROM,XPRIO autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,d6fff74092d76bee,start X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-10-09 02:31:50 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!newsmi-us.news.garr.it!newsbo.news.garr.it!NewsITBone-GARR!newsfeed.cineca.it!newsfeed.nettuno.it!server-b.cs.interbusiness.it!news.finmeccanica.it!not-for-mail From: "Lele" Newsgroups: comp.lang.ada Subject: pragma storage_size Date: Wed, 9 Oct 2002 11:03:50 +0200 Organization: Finmeccanica Message-ID: NNTP-Posting-Host: 193.70.207.169 X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Xref: archiver1.google.com comp.lang.ada:29606 Date: 2002-10-09T11:03:50+02:00 List-Id: I need to set the storage_size of few tasks, and I've used the storage_size attribute, in example: ----------------------------------------------------------------- task type DISPATCHER is pragma priority(14); end task; for DISPATCHER_TYPE'STORAGE_SIZE use 100*512; ----------------------------------------------------------------- How can I perform the same thing using the pragma STORAGE_SIZE?