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=unavailable autolearn_force=no version=3.4.4 X-Received: by 10.182.246.9 with SMTP id xs9mr10349877obc.24.1421722709990; Mon, 19 Jan 2015 18:58:29 -0800 (PST) X-Received: by 10.182.33.38 with SMTP id o6mr39716obi.16.1421722709852; Mon, 19 Jan 2015 18:58:29 -0800 (PST) Path: border1.nntp.dca1.giganews.com!nntp.giganews.com!h15no317383igd.0!news-out.google.com!qk8ni11365igc.0!nntp.google.com!h15no317377igd.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Mon, 19 Jan 2015 18:58:29 -0800 (PST) In-Reply-To: Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=73.46.72.234; posting-account=yiWntAoAAAC1KqC_shmxJYv07B9l6LNU NNTP-Posting-Host: 73.46.72.234 References: <6Tgvw.1229422$Rp.389422@fx23.iad> <6ab3d681-9b5b-41ef-b3b1-80ac39c783ef@googlegroups.com> User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: <26b0c5fc-d820-4883-8faa-1491e8759846@googlegroups.com> Subject: Re: Stupid Question but it bothers me From: David Botton Injection-Date: Tue, 20 Jan 2015 02:58:29 +0000 Content-Type: text/plain; charset=ISO-8859-1 Xref: number.nntp.giganews.com comp.lang.ada:191923 Date: 2015-01-19T18:58:29-08:00 List-Id: > the storage is freed and the task continues to run. There is no blocking for task termination with Unchecked_Deallocation on tasks. When you deallocate a task it's memory is "marked" for deallocation, but not actually released until task termination. David Botton