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.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,1df42ccb38b7251a,start X-Google-Attributes: gid103376,public From: Chang Yang Lim Subject: Tasking Date: 1998/10/27 Message-ID: <3635379B.6ADFCFCB@student.adelaide.edu.au>#1/1 X-Deja-AN: 405415789 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=us-ascii MIME-Version: 1.0 Newsgroups: comp.lang.ada Date: 1998-10-27T00:00:00+00:00 List-Id: Hi everyone, I have problems with tasking again. ok, let me put in this way: I am using protected xxxx is in the main program. however, there are few things that i will load the procedures from another package. All procedures loaded from other packages are running in tasking. and procedures will need to access the variables in protected part. how am i suppose to do that? eg. protected x is procedure save(...); procedure load(...); private x : ... end protected task type a is end a; type a_access is access a; task body a is begin yyyy(...) -- from other packages, and in this procedure, it will access the values in the protected body part. end a; I appreciate someone can give me some guidelines. Thank you. CY.