diff options
author | Tim Marsland <Tim.Marsland@Sun.COM> | 2009-04-12 10:48:30 -0700 |
---|---|---|
committer | Tim Marsland <Tim.Marsland@Sun.COM> | 2009-04-12 10:48:30 -0700 |
commit | de81e71e031139a0a7f13b7bf64152c3faa76698 (patch) | |
tree | e4f1f70082c50c2d6545d118596050ee3e9adad7 /usr/src/lib/libcurses/screen/newscreen.c | |
parent | 73cd555c10e70dac413ae4b40de8450a291750ac (diff) | |
download | illumos-joyent-de81e71e031139a0a7f13b7bf64152c3faa76698.tar.gz |
6763764 Support for FTDI USB Serial adapters
6798921 usbser mishandles some ioctls
4696628 USB serial needs properties to ignore CD
6821751 Add support for 921600 baud
Diffstat (limited to 'usr/src/lib/libcurses/screen/newscreen.c')
-rw-r--r-- | usr/src/lib/libcurses/screen/newscreen.c | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/usr/src/lib/libcurses/screen/newscreen.c b/usr/src/lib/libcurses/screen/newscreen.c index 902c490088..ea5ec923c0 100644 --- a/usr/src/lib/libcurses/screen/newscreen.c +++ b/usr/src/lib/libcurses/screen/newscreen.c @@ -2,9 +2,8 @@ * CDDL HEADER START * * The contents of this file are subject to the terms of the - * Common Development and Distribution License, Version 1.0 only - * (the "License"). You may not use this file except in compliance - * with the License. + * Common Development and Distribution License (the "License"). + * You may not use this file except in compliance with the License. * * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE * or http://www.opensolaris.org/os/licensing. @@ -19,8 +18,9 @@ * * CDDL HEADER END */ + /* - * Copyright 2004 Sun Microsystems, Inc. All rights reserved. + * Copyright 2009 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ @@ -37,8 +37,6 @@ * contributors. */ -#pragma ident "%Z%%M% %I% %E% SMI" - /*LINTLIBRARY*/ #include <stdio.h> @@ -55,7 +53,7 @@ extern char _endwin; static long baud_convert[] = { 1200, 50, 75, 110, 135, 150, 200, 300, 600, 1200, 1800, 2400, 4800, 9600, 19200, 38400, 57600, 76800, - 115200, 153600, 230400, 307200, 460800 + 115200, 153600, 230400, 307200, 460800, 921600 }; static char isfilter = 0; |