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=0.0 required=5.0 tests=BAYES_40,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,d87fcae02ce5c10a,start X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!postnews2.google.com!not-for-mail From: crmeiners@yahoo.com (Chad R. Meiners) Newsgroups: comp.lang.ada Subject: Synchronizing on multiple distinict resources Date: 2 Aug 2004 11:54:30 -0700 Organization: http://groups.google.com Message-ID: <7ebaa24d.0408021054.4abc6e73@posting.google.com> NNTP-Posting-Host: 12.40.93.132 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Trace: posting.google.com 1091472871 16372 127.0.0.1 (2 Aug 2004 18:54:31 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Mon, 2 Aug 2004 18:54:31 +0000 (UTC) Xref: g2news1.google.com comp.lang.ada:2507 Date: 2004-08-02T11:54:30-07:00 List-Id: Task and protected objects are great for synchronizing on resources that are always grouped together. However, resources that must be grouped together before they can be used, such as the chopsticks in the dining philosophers problem, seem to require the developer to write their own resource synchronization algorithm. Is there any standard method for synchronizing on multiple resources in Ada 95? If so, are there any links or articles on this topic? -CRM