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,MAILING_LIST_MULTI, REPLYTO_WITHOUT_TO_CC autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,62bdda29a43a63dd X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-07-10 07:18:02 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!newsfeed.icl.net!newsfeed.fjserv.net!opentransit.net!wanadoo.fr!freenix!enst!enst.fr!not-for-mail From: "David C. Hoos" Newsgroups: comp.lang.ada Subject: Re: Delay Date: Wed, 10 Jul 2002 09:17:53 -0500 Organization: ENST, France Sender: comp.lang.ada-admin@ada.eu.org Message-ID: References: <3D2C3CE1.1080501@yahoo.com> Reply-To: comp.lang.ada@ada.eu.org NNTP-Posting-Host: marvin.enst.fr Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Trace: avanie.enst.fr 1026310682 46102 137.194.161.2 (10 Jul 2002 14:18:02 GMT) X-Complaints-To: usenet@enst.fr NNTP-Posting-Date: Wed, 10 Jul 2002 14:18:02 +0000 (UTC) Return-Path: X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Errors-To: comp.lang.ada-admin@ada.eu.org X-BeenThere: comp.lang.ada@ada.eu.org X-Mailman-Version: 2.0.11 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: comp.lang.ada mail<->news gateway List-Unsubscribe: , Errors-To: comp.lang.ada-admin@ada.eu.org X-BeenThere: comp.lang.ada@ada.eu.org Xref: archiver1.google.com comp.lang.ada:26986 Date: 2002-07-10T09:17:53-05:00 To delay a minimum of a fixed amount of time delay ; e.g. delay 0.5; -- delay half a second To delay at least until some appointed time delay until e.g.: Next_Time : Ada.Calendar.Time; use type Ada.Calendar.Time; . . . -- Make sure the following loop executes once per second Next_Time := Ada.Calendar.Clock; loop . . Next_Time := Next_Time + 1.0; delay until Next_Time; end loop; ----- Original Message ----- From: "David Rasmussen" Newsgroups: comp.lang.ada To: Sent: Wednesday, July 10, 2002 8:55 AM Subject: Delay > How do I make a delay in an Ada program? > > /David > > _______________________________________________ > comp.lang.ada mailing list > comp.lang.ada@ada.eu.org > http://ada.eu.org/mailman/listinfo/comp.lang.ada >