summaryrefslogtreecommitdiffstats
path: root/share/man/man4/pty.4
Commit message (Collapse)AuthorAgeFilesLines
* mdoc: drop redundant .Pp and .LP callsuqs2010-10-081-1/+0
| | | | They have no effect when coming in pairs, or before .Bl/.Bd
* Move ptmx into pty(4).ed2009-09-061-2/+11
| | | | | | | | Now that pty(4) is a loadable kernel module, I'd better move /dev/ptmx in there as well. This means that pty(4) now provides almost all pseudo-terminal compatibility code. This means it's very easy to test whether applications use the proper library interfaces when allocating pseudo-terminals (namely posix_openpt and openpty).
* Integrate the new MPSAFE TTY layer to the FreeBSD operating system.ed2008-08-201-200/+47
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The last half year I've been working on a replacement TTY layer for the FreeBSD kernel. The new TTY layer was designed to improve the following: - Improved driver model: The old TTY layer has a driver model that is not abstract enough to make it friendly to use. A good example is the output path, where the device drivers directly access the output buffers. This means that an in-kernel PPP implementation must always convert network buffers into TTY buffers. If a PPP implementation would be built on top of the new TTY layer (still needs a hooks layer, though), it would allow the PPP implementation to directly hand the data to the TTY driver. - Improved hotplugging: With the old TTY layer, it isn't entirely safe to destroy TTY's from the system. This implementation has a two-step destructing design, where the driver first abandons the TTY. After all threads have left the TTY, the TTY layer calls a routine in the driver, which can be used to free resources (unit numbers, etc). The pts(4) driver also implements this feature, which means posix_openpt() will now return PTY's that are created on the fly. - Improved performance: One of the major improvements is the per-TTY mutex, which is expected to improve scalability when compared to the old Giant locking. Another change is the unbuffered copying to userspace, which is both used on TTY device nodes and PTY masters. Upgrading should be quite straightforward. Unlike previous versions, existing kernel configuration files do not need to be changed, except when they reference device drivers that are listed in UPDATING. Obtained from: //depot/projects/mpsafetty/... Approved by: philip (ex-mentor) Discussed: on the lists, at BSDCan, at the DevSummit Sponsored by: Snow B.V., the Netherlands dcons(4) fixed by: kan
* Fix a formatting error: the list of control packets ends earlier.yar2007-05-241-1/+1
|
* Spelling fixes.mpp2006-12-141-1/+1
|
* Markup fixes.ru2006-09-181-17/+30
|
* Expand contractions.joel2006-02-011-1/+1
|
* Document a bit pts.cognet2006-01-261-0/+34
|
* Mechanically kill hard sentence breaks and double whitespaces.ru2004-07-031-2/+3
|
* Retire the TIOC_REMOTE ioctl.phk2004-06-251-16/+0
| | | | | It was added 22 years ago for emacs to use, but emacs gave up on it it 17 years ago.
* Hiten's patchset for section four manpages, slightly edited by me.ru2003-06-281-8/+10
|
* mdoc(7) police: removed HISTORY info from the .Os call.ru2001-07-101-1/+1
|
* pseudo-device -> device in kernel config lines. Removed whitespace at EOL.schweikh2001-05-011-8/+8
| | | | Reviewed by: joerg, dd
* mdoc(7) police: use the new features of the Nm macro.ru2000-11-201-1/+1
|
* Remove ``count'' argument of the pseudo-devices that do notasmodai2000-01-171-7/+1
| | | | use it anymore.
* $Id$ -> $FreeBSD$peter1999-08-281-1/+1
|
* Expanded cross references.alex1998-01-021-1/+3
|
* add missing cvs Id lines.jmg1997-03-071-0/+1
|
* Fix a bunch of man pages to stop abusing the .Nm macro, alongmpp1997-02-051-2/+1
| | | | | | | with some other minor fixes for some problems I noticed while making these changes. Pointed out by: bde
* Update the FILES section to reflect the actual rangempp1996-07-031-3/+3
| | | | | | of ptys that are available. Submitted by: Matthew N. Dodd
* Correct some man page xrefs, and some other minor changes to bring somempp1996-04-081-8/+8
| | | | | | man pages up to mdoc guidelines and fix some minor formatting glitches. Also fixed a number of man pages to not abuse the .Xr macro to display functions and path names and a lot of other junk.
* BSD 4.4 Lite Share Sourcesrgrimes1994-05-301-0/+212
OpenPOWER on IntegriCloud