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=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,8060bed478dfa9cd,start X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit X-Received: by 10.66.85.168 with SMTP id i8mr4252202paz.21.1356456404999; Tue, 25 Dec 2012 09:26:44 -0800 (PST) Received: by 10.50.33.171 with SMTP id s11mr6481306igi.13.1356456404759; Tue, 25 Dec 2012 09:26:44 -0800 (PST) Path: s9ni62950pbb.0!nntp.google.com!f6no1695596pbd.1!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Tue, 25 Dec 2012 09:26:44 -0800 (PST) Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=216.244.16.210; posting-account=G2BOGAoAAABQ8nw7Yxnboy4xN0n3zUVV NNTP-Posting-Host: 216.244.16.210 User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: Subject: Ada 2012 automatic concurrency? From: charleshixsn@earthlink.net Injection-Date: Tue, 25 Dec 2012 17:26:44 +0000 Content-Type: text/plain; charset=ISO-8859-1 Date: 2012-12-25T09:26:44-08:00 List-Id: In the RM I read (page 209): NOTES 1 Concurrent task execution may be implemented on multicomputers, multiprocessors, or with interleaved execution on a single physical processor. On the other hand, whenever an implementation can determine that the required semantic effects can be achieved when parts of the execution of a given task are performed by different physical processors acting in parallel, it may choose to perform them in this way. ---------------- Does this imply that if I use protected types, that the code will automatically be run concurrently on a multiprocessor system, or might automatically be run concurrently? If so, does Gnat do this?