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,92b68ea97a40409a X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news4.google.com!news.glorb.com!border1.nntp.dca.giganews.com!local01.nntp.dca.giganews.com!nntp.megapath.net!news.megapath.net.POSTED!not-for-mail NNTP-Posting-Date: Wed, 10 Aug 2005 16:08:03 -0500 From: "Randy Brukardt" Newsgroups: comp.lang.ada References: <42f92725$0$6966$9b4e6d93@newsread2.arcor-online.net> Subject: Re: interface type question Date: Wed, 10 Aug 2005 16:11:30 -0500 X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 5.50.4952.2800 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4952.2800 Message-ID: <2oWdnfreeKgu8WffRVn-oA@megapath.net> NNTP-Posting-Host: 64.32.209.38 X-Trace: sv3-dQuDXQma+d/B7GCVpyelzXfu0KPW9jiZKM/cQgM3rSCREoRcu0tEY3lF2P6uwGxlxswZcBGVmPDLrbw!igC6sXAJi5L88eDguUCIxPhYhsTmb9pCrH5eSjCHI+jVZVTjVgnpNYS0+zi+1Bw0FZWHFSQP73Vd X-Complaints-To: abuse@megapath.net X-DMCA-Complaints-To: abuse@megapath.net X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly X-Postfilter: 1.3.32 Xref: g2news1.google.com comp.lang.ada:4074 Date: 2005-08-10T16:11:30-05:00 List-Id: It's wrong; someone pointed that out during the reviews at the York ARG meeting and it has been fixed. Thanks for pointing it out, though. Randy Brukardt, ARG Editor "Georg Bauhaus" wrote in message news:42f92725$0$6966$9b4e6d93@newsread2.arcor-online.net... > hi, > clause 3.9.4 about Interface Types in Amendment-D12.html > has an example where a Queue interfaces is parenting a > Synchronized_Queue interface. An explaining paragraph > follows and says, "The Synchronized_Queue interface ... > adds two additional dispatching operations." > > But does it add any dispatching operation to Synchronized_Queue? > > "type Queue is limited interface; > procedure Append(Q : in out Queue; Element : in Person_Name) is abstract; > ... > > "type Synchronized_Queue is synchronized interface and Queue; -- see 9.11 > procedure Append_Wait(Q : in out Queue; Element : in Person_Name) is abstract; > ..." > > By habit I had assumed that the first parameter of Append_Wait > should be Synchronized_Queue, not Queue. Is this Correct? > > > http://www.ada-auth.org/ai-files/grab_bag/Amendment-D12.html > (big) > > -- Georg