comp.lang.ada
 help / color / mirror / Atom feed
* Requeue and IN OUT parameters
@ 2001-05-04 20:28 adam
  2001-05-05  6:27 ` Mark Biggar
  2001-05-05 22:13 ` Robert A Duff
  0 siblings, 2 replies; 3+ messages in thread
From: adam @ 2001-05-04 20:28 UTC (permalink / raw)


I have a couple more questions about protected objects.  Here's the first 
question; the second will be in a separate post.

9.5.4(11) says that if an entry body completes other than by a
requeue, the program returns to the caller and any copy-back of
parameters occurs.  What happens to the parameters if the entry
body does a requeue?  In this example:

    protected PR is
       entry E1 (Count : in out integer);
       entry E2 (Count : in out integer);
    end PR;

    protected body PR is
       entry E1 (Count : in out integer) when Some_Condition is
       begin
           if Blah_Blah_Blah then
               Count := Count + 1;
               requeue E2;
           end if;
           Do_A_Bunch_Of_Other_Stuff;
       end E1;
    . . .

In this example, does the effect of the statement "Count := Count + 1"
become lost?  Is the value E2 sees the original value of Count, the
incremented value, or implementation-dependent?

(Actually, I believe this question is pertinent to task entries also.)

				-- thanks, Adam

 -----  Posted via NewsOne.Net: Free (anonymous) Usenet News via the Web  -----
  http://newsone.net/ -- Free reading and anonymous posting to 60,000+ groups
   NewsOne.Net prohibits users from posting spam.  If this or other posts
made through NewsOne.Net violate posting guidelines, email abuse@newsone.net



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2001-05-05 22:13 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-05-04 20:28 Requeue and IN OUT parameters adam
2001-05-05  6:27 ` Mark Biggar
2001-05-05 22:13 ` Robert A Duff

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox