home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: Graphics / Graphics.zip / os2apipm.zip / APIEXAM / PHIL / ROOM.ADS < prev    next >
Text File  |  1996-06-05  |  663b  |  21 lines

  1. --room.ads
  2. with Phil;
  3. with Society;
  4. package Room is
  5.  
  6.   -- Dining Philosophers - Ada 95 edition
  7.   -- Room.Maitre_D is responsible for assigning seats at the
  8.   --   table, "left" and "right" chopsticks, and for reporting
  9.   --   interesting events to the outside world.
  10.   -- Michael B. Feldman, The George Washington University,
  11.   -- July, 1995.
  12.  
  13.   task Maitre_D is
  14.     entry Start_Serving;
  15.     entry Report_State (Which_Phil : in Society.Unique_DNA_Codes;
  16.                         State      : in Phil.States;
  17.                         How_Long   : in Natural := 0;
  18.                         Which_Meal : in Natural := 0);
  19.   end Maitre_D;
  20. end Room;
  21.