UNLOCKPT(3) Library Functions Manual UNLOCKPT(3)
NAME
unlockpt — unlock
a pseudo-terminal master/slave pair
SYNOPSIS
int unlockpt(int fildes);
DESCRIPTION
The unlockpt () function shall unlock the
slave pseudo-terminal device associated with the master to which
fildes
refers.
Conforming applications shall ensure that they call
unlockpt () before opening the slave side of a
pseudo-terminal device.
RETURN VALUE
Upon successful completion, unlockpt ()
shall return 0. Otherwise, it shall return -1 and set
errno to
indicate the error.
ERRORS
The unlockpt () function may fail if:
EXAMPLES
None.
APPLICATION USAGE
None.
RATIONALE
None.
FUTURE DIRECTIONS
None.
SEE ALSO
grantpt(3) , open(3) , ptsname(3)
XBD <stdlib.h>
CHANGE HISTORY
First released in Issue 4, Version 2.
Issue 5
Moved from X/OPEN UNIX extension to BASE.
Issue 6
The normative text is updated to avoid use of the term "must" for application requirements.
January 1, 2008 posix.fail