From owner-freebsd-questions Sun Nov 5 03:21:59 1995 Return-Path: owner-questions Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id DAA29124 for questions-outgoing; Sun, 5 Nov 1995 03:21:59 -0800 Received: from odin (iwte01-2.dialin.rrze.uni-erlangen.de [192.44.83.18]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id DAA29105 for ; Sun, 5 Nov 1995 03:21:50 -0800 Received: (from eilts@localhost) by odin (8.6.8/8.6.6) id MAA00418; Sun, 5 Nov 1995 12:24:06 +0100 Date: Sun, 5 Nov 1995 12:24:06 +0100 From: Hinrich Eilts Message-Id: <199511051124.MAA00418@odin> Received: by NeXT.Mailer (1.100) Received: by NeXT Mailer (1.100) To: Donald Burr Subject: Re: What is the FreeBSD equivalent of "CBAUD"? Cc: freebsd-questions@freebsd.org Sender: owner-questions@freebsd.org Precedence: bulk > What is CBAUD? I have access to several workstations from Sun, DEC, etc. > and they all have it, but my poor FreeBSD box doesn't -- I grepped all > over the /usr/include tree, and even in the libraries, kernel source, > etc. It just isn't there. > CBAUD is a bit-mask for defining baud rate in c_cflag from termio. Because FreeBSD uses termios and not termio, baud rate is controlled by several routines like cfsetospeed. You can access HP-UX man-pages by WWW: http://late5.e-technik/cgi-bin/docquery.pl (The form is in german, but it is simple and has the same functionality and options as the english http://late5.e-technik/cgi-bin/bsddocquery.pl for FreeBSD). Hinrich