Mailing-List: contact cygwin-help@sourceware.cygnus.com; run by ezmlm
List-Subscribe: <mailto:cygwin-subscribe@sources.redhat.com>
List-Archive: <http://sources.redhat.com/ml/cygwin/>
List-Post: <mailto:cygwin@sources.redhat.com>
List-Help: <mailto:cygwin-help@sources.redhat.com>, <http://sources.redhat.com/ml/#faqs>
Sender: cygwin-owner@sources.redhat.com
Delivered-To: mailing list cygwin@sources.redhat.com
Message-ID: <39905414.1B760004@tensilica.com>
Date: Tue, 08 Aug 2000 11:40:20 -0700
From: Bob Wilson <bwilson@tensilica.com>
Organization: Tensilica, Inc.
X-Mailer: Mozilla 4.7 [en] (X11; U; Linux 2.2.12-20 i686)
X-Accept-Language: en
MIME-Version: 1.0
To: cygwin@sourceware.cygnus.com
Subject: patch for serial version of tcsendbreak
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

There is a serious problem in the serial version of tcsendbreak. The
argument to usleep is in microseconds but the tcsendbreak code is
setting "sleeptime" in milliseconds.  The result is that the break
signal is way too short and is not even recognized, at least by our
board.  This problem exists in everything from b20.1 to 1.1.4.  The
following patch to winsup/fhandler_serial.cc is for the b20.1 version,
so the line numbers may be a bit off for 1.1.4.  I hope you can
incorporate this fix soon.  Thanks.

*** fhandler_serial.cc  Wed Nov 18 18:15:09 1998
--- ../../fhandler_serial.cc    Tue Feb 29 14:15:37 2000
***************
*** 167,173 ****
  int
  fhandler_serial::tcsendbreak (int duration)
  {
!   unsigned int sleeptime = 300;

    if (duration > 0)
      sleeptime *= duration;
--- 167,173 ----
  int
  fhandler_serial::tcsendbreak (int duration)
  {
!   unsigned int sleeptime = 300000;

    if (duration > 0)
      sleeptime *= duration;

-- 
Bob Wilson                      Tel: (408) 327-7312
Tensilica, Inc.                 Fax: (408) 986-8919
3255-6 Scott Blvd.              email: bwilson@tensilica.com
Santa Clara, CA 95054

--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

