diff options
author | 2007-01-09 16:24:05 +0000 | |
---|---|---|
committer | 2007-01-09 16:24:05 +0000 | |
commit | a4073b1549ac8e62af16378d1ea97c927cb8baaa (patch) | |
tree | 0126681ad147ef006fecd28447918c526d52e922 | |
parent | Ignore "mapping symbols" like $a and $t. They seem to be an ARM-only (diff) | |
download | wireguard-openbsd-a4073b1549ac8e62af16378d1ea97c927cb8baaa.tar.xz wireguard-openbsd-a4073b1549ac8e62af16378d1ea97c927cb8baaa.zip |
TIOCGPGRP and TIOCSPGRP are the underlying ioctl(2)s for tcgetpgrp and
tcsetpgrp, respectively, not tcgetattr and tcsetattr;
from "Matthew R. Dempsky" <mrd@alkemio.org>
-rw-r--r-- | share/man/man4/tty.4 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/share/man/man4/tty.4 b/share/man/man4/tty.4 index 8d8d0b7c35a..2733490a381 100644 --- a/share/man/man4/tty.4 +++ b/share/man/man4/tty.4 @@ -1,4 +1,4 @@ -.\" $OpenBSD: tty.4,v 1.29 2006/06/13 10:14:28 mbalmer Exp $ +.\" $OpenBSD: tty.4,v 1.30 2007/01/09 16:24:05 robert Exp $ .\" $NetBSD: tty.4,v 1.4 1996/03/19 04:26:01 paulus Exp $ .\" .\" Copyright (c) 1991, 1992, 1993 @@ -234,14 +234,14 @@ with in the integer pointed to by .Fa tpgrp . This is the underlying call that implements the .Xr termios 4 -.Fn tcgetattr +.Fn tcgetpgrp call. .It Dv TIOCSPGRP Fa int *tpgrp Associate the terminal with the process group (as an integer) pointed to by .Fa tpgrp . This is the underlying call that implements the .Xr termios 4 -.Fn tcsetattr +.Fn tcsetpgrp call. .It Dv TIOCGETA Fa struct termios *term Place the current value of the termios state associated with the |