The Single UNIX ® Specification, Version 2
Copyright © 1997 The Open Group

 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:
[EBADF]
The fildes argument is not a valid open file descriptor.
[EINVAL]
The fildes argument is not associated with a master pseudo-terminal device.
[EACCES]
The corresponding slave pseudo-terminal device could not be accessed.

 EXAMPLES

None.

 APPLICATION USAGE

None.

 FUTURE DIRECTIONS

None.

 SEE ALSO

open(), ptsname(), unlockpt(), <stdlib.h>.

UNIX ® is a registered Trademark of The Open Group.
Copyright © 1997 The Open Group
[ Main Index | XSH | XCU | XBD | XCURSES | XNS ]