From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Nick Roberts Newsgroups: gmane.emacs.devel Subject: Windows equivalent to Unix sleep Date: Fri, 7 Nov 2003 21:32:18 +0000 Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: <16300.3938.840939.841413@nick.uklinux.net> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1068238096 15695 80.91.224.253 (7 Nov 2003 20:48:16 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 7 Nov 2003 20:48:16 +0000 (UTC) Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Fri Nov 07 21:48:13 2003 Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1AIDWf-0004rk-00 for ; Fri, 07 Nov 2003 21:48:13 +0100 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1AIDWf-0004iw-00 for ; Fri, 07 Nov 2003 21:48:13 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.24) id 1AIEPL-00010W-3X for emacs-devel@quimby.gnus.org; Fri, 07 Nov 2003 16:44:43 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.24) id 1AIEPC-0000yv-E4 for emacs-devel@gnu.org; Fri, 07 Nov 2003 16:44:34 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.24) id 1AIEOf-0000tb-Kt for emacs-devel@gnu.org; Fri, 07 Nov 2003 16:44:32 -0500 Original-Received: from [194.247.48.252] (helo=nick.uklinux.net) by monty-python.gnu.org with esmtp (Exim 4.24) id 1AIELX-0000N3-Ma for emacs-devel@gnu.org; Fri, 07 Nov 2003 16:40:48 -0500 Original-Received: by nick.uklinux.net (Postfix, from userid 501) id C6C6975FDE; Fri, 7 Nov 2003 21:32:19 +0000 (GMT) Original-To: emacs-devel@gnu.org X-Mailer: VM 6.97 under Emacs 21.2.1 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.2 Precedence: list List-Id: Emacs development discussions. List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:17720 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:17720 I am trying to make a transition from using annotations to GDB/MI in gdb-ui.el On gdb@sources.redhat.com it was suggested that I use the tty command to separate the output of gdb from that of the inferior. I now know this requires the Unix sleep command so that any input in the execution window will be sure to go to the inferior, rather than the shell. Something like: (make-comint "I/O" "sleep" nil "10000") will work (for 3 hours anyway!). AFAIK there is no sleep command in Windows. Can I do so anything so that this approach will also work there? Nick http://www.nick.uklinux.net