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 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,6d07d0186a356c56 X-Google-Attributes: gid103376,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII Path: g2news1.google.com!postnews.google.com!v19g2000yqn.googlegroups.com!not-for-mail From: sjw Newsgroups: comp.lang.ada Subject: Re: Representing image data Date: Wed, 11 Mar 2009 13:12:38 -0700 (PDT) Organization: http://groups.google.com Message-ID: <2c37865d-3ac6-42ce-a926-d73514aaf5b7@v19g2000yqn.googlegroups.com> References: <9WAtl.2301$gm6.1634@nwrddc02.gnilink.net> NNTP-Posting-Host: 82.20.239.213 Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: posting.google.com 1236802358 19227 127.0.0.1 (11 Mar 2009 20:12:38 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Wed, 11 Mar 2009 20:12:38 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: v19g2000yqn.googlegroups.com; posting-host=82.20.239.213; posting-account=_RXWmAoAAADQS3ojtLFDmTNJCT0N2R4U User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_6; en-us) AppleWebKit/525.27.1 (KHTML, like Gecko) Version/3.2.1 Safari/525.27.1,gzip(gfe),gzip(gfe) Xref: g2news1.google.com comp.lang.ada:4046 Date: 2009-03-11T13:12:38-07:00 List-Id: On Mar 11, 3:45=A0pm, Brian Drummond wrote: > You can explicitly set the stack size for any task other than the main ta= sk, but > creating a task just to set stack size would be absurd, so I resorted to = a > pointer... If you need a larger stack for some reason that can't be obviated by using dynamic object allocation then creating an appropriate task is the obvious way ... I needed to call an XML processing library that needed >0.5 MB stack, using a task was the only way I could think of. Worked a treat.