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,6865cb8d1d7432db X-Google-Attributes: gid103376,public From: Dale Stanbrough Subject: Re: MUD Date: 1998/02/16 Message-ID: <6c8h6k$hra$1@goanna.cs.rmit.edu.au>#1/1 X-Deja-AN: 325461949 Content-Transfer-Encoding: 8bit References: X-XXMessage-ID: Mime-Version: 1.0 Distribution: world Content-Type: text/plain; charset=ISO-8859-1 Organization: RMIT Newsgroups: comp.lang.ada Date: 1998-02-16T00:00:00+00:00 List-Id: I had my first year students working of an interface that a mixture of 1st and 2nd year students coded up. We didn't use shared passive at all, we just put all of the data structures into a package body, and provided interface routines for all of the code. There was the required locking on all the internal data structures, which was accomplished by using a protected type based semaphore. Used gnat 3.09 and the appropriate glade implementation. Dale