1994-05-06 10:25:29 +04:00
|
|
|
.\" Copyright (c) 1983, 1991, 1993
|
|
|
|
.\" The Regents of the University of California. All rights reserved.
|
|
|
|
.\"
|
|
|
|
.\" Redistribution and use in source and binary forms, with or without
|
|
|
|
.\" modification, are permitted provided that the following conditions
|
|
|
|
.\" are met:
|
|
|
|
.\" 1. Redistributions of source code must retain the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer.
|
|
|
|
.\" 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer in the
|
|
|
|
.\" documentation and/or other materials provided with the distribution.
|
2003-08-07 20:42:00 +04:00
|
|
|
.\" 3. Neither the name of the University nor the names of its contributors
|
1994-05-06 10:25:29 +04:00
|
|
|
.\" may be used to endorse or promote products derived from this software
|
|
|
|
.\" without specific prior written permission.
|
|
|
|
.\"
|
|
|
|
.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
.\" SUCH DAMAGE.
|
|
|
|
.\"
|
1997-10-09 14:20:07 +04:00
|
|
|
.\" from: @(#)stty.3 8.1 (Berkeley) 6/4/93
|
2022-12-04 04:29:31 +03:00
|
|
|
.\" $NetBSD: stty.3,v 1.11 2022/12/04 01:29:32 uwe Exp $
|
1994-05-06 10:25:29 +04:00
|
|
|
.\"
|
2019-09-02 02:42:19 +03:00
|
|
|
.Dd September 2, 2019
|
1994-05-06 10:25:29 +04:00
|
|
|
.Dt STTY 3
|
1999-03-22 22:44:33 +03:00
|
|
|
.Os
|
1994-05-06 10:25:29 +04:00
|
|
|
.Sh NAME
|
|
|
|
.Nm stty ,
|
|
|
|
.Nm gtty
|
|
|
|
.Nd set and get terminal state (defunct)
|
1998-02-05 21:45:17 +03:00
|
|
|
.Sh LIBRARY
|
|
|
|
.Lb libcompat
|
1994-05-06 10:25:29 +04:00
|
|
|
.Sh SYNOPSIS
|
2003-04-16 17:34:34 +04:00
|
|
|
.In sgtty.h
|
1994-05-06 10:25:29 +04:00
|
|
|
.Fn stty "int fd" "struct sgttyb *buf"
|
|
|
|
.Fn gtty "int fd" "struct sgttyb *buf"
|
|
|
|
.Sh DESCRIPTION
|
|
|
|
.Bf -symbolic
|
1999-07-02 19:14:07 +04:00
|
|
|
These interfaces are obsoleted by
|
1995-01-13 04:15:53 +03:00
|
|
|
.Xr ioctl 2 .
|
1994-05-06 10:25:29 +04:00
|
|
|
They are available from the compatibility library, libcompat.
|
|
|
|
.Ef
|
|
|
|
.Pp
|
|
|
|
The
|
|
|
|
.Fn stty
|
|
|
|
function
|
|
|
|
sets the state of the terminal associated with
|
|
|
|
.Fa fd .
|
|
|
|
The
|
|
|
|
.Fn gtty
|
|
|
|
function
|
|
|
|
retrieves the state of the terminal associated
|
|
|
|
with
|
|
|
|
.Fa fd .
|
|
|
|
To set the state of a terminal the call must have
|
|
|
|
write permission.
|
|
|
|
.Pp
|
|
|
|
The
|
|
|
|
.Fn stty
|
|
|
|
call is actually
|
|
|
|
.Ql ioctl(fd, TIOCSETP, buf) ,
|
|
|
|
while
|
|
|
|
the
|
|
|
|
.Fn gtty
|
|
|
|
call is
|
|
|
|
.Ql ioctl(fd, TIOCGETP, buf) .
|
1999-07-02 19:14:07 +04:00
|
|
|
See
|
1994-05-06 10:25:29 +04:00
|
|
|
.Xr ioctl 2
|
|
|
|
and
|
|
|
|
.Xr tty 4
|
|
|
|
for an explanation.
|
2022-12-04 04:29:31 +03:00
|
|
|
.Sh RETURN VALUES
|
|
|
|
.Rv -std gtty stty
|
1994-05-06 10:25:29 +04:00
|
|
|
.Sh SEE ALSO
|
|
|
|
.Xr ioctl 2 ,
|
|
|
|
.Xr tty 4
|
|
|
|
.Sh HISTORY
|
|
|
|
The
|
|
|
|
.Fn stty
|
|
|
|
and
|
|
|
|
.Fn gtty
|
1999-07-02 19:14:07 +04:00
|
|
|
functions appeared in
|
2019-09-02 02:42:19 +03:00
|
|
|
.At v1 .
|
|
|
|
Obsoleted by
|
|
|
|
.Xr ioctl 2 ,
|
|
|
|
these functions were moved to libcompat in
|
1994-05-06 10:25:29 +04:00
|
|
|
.Bx 4.2 .
|