man-pages/man3/grantpt.3

64 lines
1.5 KiB
Groff
Raw Normal View History

2004-11-03 13:51:07 +00:00
.\" Hey Emacs! This file is -*- nroff -*- source.
.\" This page is in the public domain. - aeb
.\"
2007-05-18 09:55:10 +00:00
.TH GRANTPT 3 2003-01-30 "GNU" "Linux Programmer's Manual"
2004-11-03 13:51:07 +00:00
.SH NAME
grantpt \- grant access to the slave pseudo-terminal
2004-11-03 13:51:07 +00:00
.SH SYNOPSIS
.nf
.B #define _XOPEN_SOURCE
.br
.B #include <stdlib.h>
.sp
.BI "int grantpt(int " fd ");"
.fi
.SH DESCRIPTION
The
.BR grantpt ()
function changes the mode and owner of the slave pseudo-terminal device
(pty) corresponding to the master pty referred to by
.IR fd .
The user ID of the slave is set to the real UID of the calling process.
The group ID is set to an unspecified value (e.g. tty).
The mode of the slave is set to 0620 (crw\-\-w\-\-\-\-).
.PP
The behavior of
.BR grantpt ()
is unspecified if a signal handler is installed to catch SIGCHLD signals.
.SH "RETURN VALUE"
When successful,
2004-11-03 13:51:07 +00:00
.BR grantpt ()
2007-06-08 03:17:37 +00:00
returns 0.
Otherwise, it returns \-1 and sets
2004-11-03 13:51:07 +00:00
.I errno
appropriately.
.SH ERRORS
.TP
.B EACCES
The corresponding slave pty could not be accessed.
.TP
.B EBADF
The
.I fd
argument is not a valid open file descriptor.
.TP
.B EINVAL
The
.I fd
argument is valid but not associated with a master pty.
.SH "CONFORMING TO"
2006-08-03 13:57:30 +00:00
POSIX.1-2001
2004-11-03 13:51:07 +00:00
.SH NOTES
This is part of the Unix98 pty support, see
.BR pts (4).
Many systems implement this function via a set-user-ID helper binary
2004-11-03 13:51:07 +00:00
called "pt_chown". With Linux devpts no such helper binary is required.
.SH "SEE ALSO"
.BR open (2),
2004-12-17 12:46:00 +00:00
.BR posix_openpt (3),
2004-11-03 13:51:07 +00:00
.BR ptsname (3),
.BR unlockpt (3),
2005-10-10 13:14:12 +00:00
.BR pts (4),
2007-01-28 20:00:24 +00:00
.BR feature_test_macros (7),
2005-10-10 13:14:12 +00:00
.BR pty (7)