NAME
grantpt — grant
access to the subsidiary pseudo-terminal device
SYNOPSIS
int grantpt(int fildes);
DESCRIPTION
The grantpt () function shall change the
mode and ownership of the subsidiary pseudo-terminal device associated with
its manager pseudo-terminal counterpart. The
fildes
argument is a file descriptor that refers to a manager pseudo-terminal
device. The user ID of the subsidiary shall be set to the real UID of the
calling process and the group ID shall be set to an unspecified group ID.
The permission mode of the subsidiary pseudo-terminal shall be set to
readable and writable by the owner, and writable by the group.
The behavior of the grantpt () function is
unspecified if the application has installed a signal handler to catch
SIGCHLD signals.
RETURN VALUE
Upon successful completion, grantpt ()
shall return 0; otherwise, it shall return -1 and set
errno to
indicate the error.
ERRORS
The grantpt () function may fail if:
EXAMPLES
None.
APPLICATION USAGE
None.
RATIONALE
See the RATIONALE section for posix_openpt(3).
FUTURE DIRECTIONS
None.
SEE ALSO
open(3), posix_openpt(3), ptsname(3), unlockpt(3)
XBD <stdlib.h>
CHANGE HISTORY
First released in Issue 4, Version 2.
Issue 5
Moved from X/OPEN UNIX extension to BASE.
The last paragraph of the DESCRIPTION is moved from the APPLICATION USAGE section.
Issue 7
POSIX.1-2008, Technical Corrigendum 1, XSH/TC1-2008/0272 [96] is applied.
POSIX.1-2008, Technical Corrigendum 2, XSH/TC2-2008/0177 [506] is applied.
Issue 8
Austin Group Defect 1466 is applied, changing the terminology used for pseudo-terminal devices.