NAME
grantpt — grant
access to the slave pseudo-terminal device
SYNOPSIS
#include <stdlib.h> int grantpt(int fildes);
DESCRIPTION
The grantpt() function changes the mode and ownership of the slave pseudo-terminal device associated with its master pseudo-terminal counter part. The fildes argument is a file descriptor that refers to a master pseudo-terminal device. The user ID of the slave is set to the real UID of the calling process and the group ID is set to an unspecified group ID. The permission mode of the slave pseudo-terminal is set to readable and writable by the owner, and writable by the group.
The behaviour of the grantpt() function is unspecified if the application has installed a signal handler to catch SIGCHLD signals
RETURN VALUE
Upon successful completion, grantpt() returns 0. Otherwise, it returns -1 and sets errno to indicate the error.
ERRORS
The grantpt() function may fail if:
EXAMPLES
None.
APPLICATION USAGE
None.
FUTURE DIRECTIONS
None.
SEE ALSO
open(3) , ptsname(3) , unlockpt(3) , <stdlib.h> .