From owner-freebsd-hackers Thu Mar 1 3:29:53 2001 Delivered-To: freebsd-hackers@freebsd.org Received: from albatross.prod.itd.earthlink.net (albatross.prod.itd.earthlink.net [207.217.120.120]) by hub.freebsd.org (Postfix) with ESMTP id 5235137B71A for ; Thu, 1 Mar 2001 03:29:51 -0800 (PST) (envelope-from derick@xenocex.com) Received: from xenocex.com (pool0257.cvx27-bradley.dialup.earthlink.net [209.179.57.2]) by albatross.prod.itd.earthlink.net (EL-8_9_3_3/8.9.3) with ESMTP id DAA02515 for ; Thu, 1 Mar 2001 03:29:46 -0800 (PST) Message-ID: <3A9E32C5.90603@xenocex.com> Date: Thu, 01 Mar 2001 03:30:13 -0800 From: "Derick J. Fernando" User-Agent: Mozilla/5.0 (X11; U; FreeBSD 4.2-RELEASE i386; en-US; 0.8) Gecko/20010227 X-Accept-Language: en MIME-Version: 1.0 To: freebsd-hackers@FreeBSD.org Subject: RE: Dropping RTS in FreeBSD 4.2 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello all, This is an example of how I would try to drop RTS, I am porting a win32 seismometer program to FreeBSD / X11. However this does not seem to work on FreeBSD, my cheap breakout box reports no change. #include #include int fd; int status; ioctl(fd, TIOCMGET, &status); status &= ~TIOCM_RTS; ioctl(fd, TIOCMSET, status); Any ideas, more reliable way to do this? Any docs? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message