comp.lang.ada
 help / color / mirror / Atom feed
From: Toshitaka Kumano <kumano@cl.cilas.net>
Subject: Re: pragma storage_size
Date: Fri, 11 Oct 2002 00:53:11 +0900
Date: 2002-10-11T00:53:11+09:00	[thread overview]
Message-ID: <mailman.1034265121.8946.comp.lang.ada@ada.eu.org> (raw)
In-Reply-To: ao12h4$dbl$1@e3k.asi.ansaldo.it

Lele wrote:
> 
> Thanks
> 
> > -----------------------------------------------------------------
> > task type DISPATCHER is
> >    pragma priority(14);
> >    pragma Storage_Size (100*512);
> > end task;
> > -----------------------------------------------------------------

OR You can like this, if necessary:

task type Dispatcher (Storage : Any_Integer_Type) is
    pragma Priority(14);
    pragma Storage_Size (Size);
end task;

AND

Small  : Dispatcher (Storage => 100 * 512);
Medium : Dispatcher (Storage => 200 * 512);
Large  : Dispatcher (Storage => 300 * 512);
 
-- 
Toshitaka Kumano
Kamakura, Japan



  reply	other threads:[~2002-10-10 15:53 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-10-09  9:03 pragma storage_size Lele
2002-10-09 10:11 ` David C. Hoos, Sr.
2002-10-09 11:01   ` Lele
2002-10-10 15:53     ` Toshitaka Kumano [this message]
     [not found]     ` <3DA5A267.FFD561D7@cl.cilas.net>
2002-10-10 19:12       ` David C. Hoos
     [not found]       ` <044f01c27090$f59e50b0$453ab4d8@sy.com>
2002-10-11 16:06         ` Toshitaka Kumano
replies disabled

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox