diff options
author | Robert Nagy <robert@cvs.openbsd.org> | 2007-01-09 16:24:06 +0000 |
---|---|---|
committer | Robert Nagy <robert@cvs.openbsd.org> | 2007-01-09 16:24:06 +0000 |
commit | b75f7cc2bfc915e46c1c7e578baa6c720d0c031e (patch) | |
tree | 604e163f0cb277120fb14831369b07c2f9ef9830 | |
parent | 2a9dc08daaa0aacb9cca6e61c996df04a91c2f3b (diff) |
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 |